mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-19 12:59:36 -07:00
Fix logger error. #395
This commit is contained in:
parent
844bae645e
commit
84d9a121e0
1 changed files with 2 additions and 2 deletions
|
|
@ -8,7 +8,7 @@ from nzbtomedia import logger
|
||||||
|
|
||||||
class autoProcessComics:
|
class autoProcessComics:
|
||||||
def get_status(self, url, apikey, dirName):
|
def get_status(self, url, apikey, dirName):
|
||||||
logger.debug("Attempting to get current status for release:%s" % (os.path.basename(dirName)),section)
|
logger.debug("Attempting to get current status for release:%s" % (os.path.basename(dirName)))
|
||||||
|
|
||||||
params = {}
|
params = {}
|
||||||
params['apikey'] = apikey
|
params['apikey'] = apikey
|
||||||
|
|
@ -111,4 +111,4 @@ class autoProcessComics:
|
||||||
|
|
||||||
# The status hasn't changed. we have waited 2 minutes which is more than enough. uTorrent can resume seeding now.
|
# The status hasn't changed. we have waited 2 minutes which is more than enough. uTorrent can resume seeding now.
|
||||||
logger.warning("The issue does not appear to have changed status after %s minutes. Please check your Logs" % (wait_for),section)
|
logger.warning("The issue does not appear to have changed status after %s minutes. Please check your Logs" % (wait_for),section)
|
||||||
return 1 # failure
|
return 1 # failure
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue