From dbce4d9c95f12ae787cc48084c3d0d71ea2bb00e Mon Sep 17 00:00:00 2001 From: echel0n Date: Wed, 2 Apr 2014 04:45:54 -0700 Subject: [PATCH] Fixed bug in manual run for SickBeard --- nzbToMedia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nzbToMedia.py b/nzbToMedia.py index fe273b49..0053d491 100755 --- a/nzbToMedia.py +++ b/nzbToMedia.py @@ -407,7 +407,7 @@ else: # only CPS and SB supports this manual run for now. nzbDir, inputName, status, inputCategory, download_id = ('Manual Run', 'Manual Run', 0, cpsCategory[0], '') Logger.info("MAIN: Running autoProcessTV as a manual run...") - nzbDir, status, inputCategory = ('Manual Run', 0, sbCategory[0]) + nzbDir, inputName, status, inputCategory = ('Manual Run', None, 0, sbCategory[0]) if inputCategory in cpsCategory: Logger.info("MAIN: Calling CouchPotatoServer to post-process: %s", inputName)