mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-20 21:33:13 -07:00
change status to int. Fixes #439
This commit is contained in:
parent
5546fd9b5d
commit
28791e95c4
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ from nzbtomedia import logger
|
|||
|
||||
class autoProcessComics:
|
||||
def processEpisode(self, section, dirName, inputName=None, status=0, clientAgent='manual', inputCategory=None):
|
||||
if status != 0:
|
||||
if int(status) != 0:
|
||||
logger.warning("FAILED DOWNLOAD DETECTED, nothing to process.",section)
|
||||
return 0
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue