mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 10:36:52 -07:00
minor fixes for #230
This commit is contained in:
parent
6fe287df0d
commit
18d10d28a6
3 changed files with 6 additions and 1 deletions
|
@ -184,7 +184,7 @@ def main(inputDirectory, inputName, inputCategory, inputHash, inputID):
|
|||
except:
|
||||
Logger.exception("MAIN: Extraction failed for: %s", file)
|
||||
continue
|
||||
elif (not inputCategory in cpsCategory) and (not inputCategory in sbCategory): #process all for non-video categories.
|
||||
elif not inputCategory in cpsCategory + sbCategory: #process all for non-video categories.
|
||||
Logger.info("MAIN: Found file %s for category %s", filePath, inputCategory)
|
||||
copy_link(filePath, targetDirectory, useLink, outputDestination)
|
||||
copy_list.append([filePath, os.path.join(outputDestination, file)])
|
||||
|
|
|
@ -121,6 +121,10 @@ def migrate():
|
|||
original = configold.items(section)
|
||||
except:
|
||||
continue
|
||||
try:
|
||||
confignew.add_section(section)
|
||||
except:
|
||||
pass
|
||||
for item in original:
|
||||
option, value = item
|
||||
confignew.set(section, option, value)
|
||||
|
|
|
@ -13,6 +13,7 @@ Added Torrent Hash to Deluge to assist with movie ID.
|
|||
Added passwords option to attempt extraction od passworded archives.
|
||||
|
||||
Impacts All
|
||||
Made processing Category Centric as an option for people running multiple versions of SickBeard and CouchPotato etc.
|
||||
Added TPB version of SickBeard processing. This now uses a fork pass-in instead of failed_fork.
|
||||
Added new option to convert files, directories, and parameters to ASCII. To be used if you regularly download "foreign" titles and have problems with CP/SB.
|
||||
Now only parse results from CouchPotato 50 at a time to prevent error with large wanted list.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue