mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 05:43:16 -07:00
Fixed bug in nzbToSickBeard
This commit is contained in:
parent
18ce9b5dca
commit
7ffabbe885
1 changed files with 3 additions and 3 deletions
|
@ -237,11 +237,11 @@ else:
|
||||||
for category in subsection:
|
for category in subsection:
|
||||||
dirNames = get_dirnames(section, category)
|
dirNames = get_dirnames(section, category)
|
||||||
for dirName in dirNames:
|
for dirName in dirNames:
|
||||||
Logger.info("MAIN: nzbTo%s running %s:%s as a manual run...", section, section, subsection)
|
Logger.info("MAIN: nzbTo%s running %s:%s as a manual run...", section, section, category)
|
||||||
results = autoProcessTV(dirName, inputName=os.path.basename(dirName), failed=0, clientAgent="manual", inputCategory=category)
|
results = autoProcessTV(dirName, os.path.basename(dirName), 0, inputCategory=category)
|
||||||
if results != 0:
|
if results != 0:
|
||||||
result = results
|
result = results
|
||||||
Logger.info("MAIN: A problem was reported when trying to manually run %s:%s.", section, subsection)
|
Logger.info("MAIN: A problem was reported when trying to manually run %s:%s.", section, category)
|
||||||
|
|
||||||
if result == 0:
|
if result == 0:
|
||||||
Logger.info("MAIN: The autoProcessTV script completed successfully.")
|
Logger.info("MAIN: The autoProcessTV script completed successfully.")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue