mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 05:43:16 -07:00
Fix error log.
This commit is contained in:
parent
37cc367e76
commit
85afe098cf
1 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ class autoProcessMovie:
|
|||
if 'error' in result:
|
||||
logger.error(str(result['error']))
|
||||
else:
|
||||
logger.error("no media found for id %s", params['id'])
|
||||
logger.error("no media found for id %s" % (params['id']))
|
||||
return results
|
||||
|
||||
# Gather release info and return it back, no need to narrow results
|
||||
|
@ -320,4 +320,4 @@ class autoProcessMovie:
|
|||
logger.warning(
|
||||
"%s does not appear to have changed status after %s minutes, Please check your logs." % (inputName, wait_for),
|
||||
section)
|
||||
return 1 # failure
|
||||
return 1 # failure
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue