From be8b9c68c9b8a206521f3dc8ac5582ede39da325 Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Fri, 27 Sep 2013 09:44:11 +0930 Subject: [PATCH] Always process for HeadPhones etc. fixes #182 We shouldn't stop HeadPhones processing when no movies are detected! --- TorrentToMedia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TorrentToMedia.py b/TorrentToMedia.py index 85534d1f..fdcfbf95 100755 --- a/TorrentToMedia.py +++ b/TorrentToMedia.py @@ -177,7 +177,7 @@ def main(inputDirectory, inputName, inputCategory, inputHash, inputID): if inputCategory and not (inputCategory in processCategories): # no extra processign to be done... yet. Logger.info("MAIN: No further processing to be done for category %s.", inputCategory) result = 1 - elif status == 0: + elif status == 0 or (inputCategory in [hpCategory, mlCategory, gzCategory]): # if movies linked/extracted or for other categories. Logger.debug("MAIN: Calling autoProcess script for successful download.") else: Logger.error("MAIN: Something failed! Please check logs. Exiting")