mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 13:53:15 -07:00
Fix #301
This commit is contained in:
parent
966371b610
commit
2d57f9c581
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ def processEpisode(dirName, nzbName=None, failed=False, clientAgent=None, inputC
|
|||
del params[param]
|
||||
|
||||
# delete any unused params so we don't pass them to SB by mistake
|
||||
[params.pop(k) for k,v in params.iteritems() if v is None]
|
||||
[params.pop(k) for k,v in params.items() if v is None]
|
||||
|
||||
if status == 0:
|
||||
Logger.info("The download succeeded. Sending process request to SickBeard's %s branch", fork)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue