1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-13 03:22:22 -05:00

AniDB: Fix generating exception on timeout in auth

This commit is contained in:
Alexandre Beloin 2015-02-17 19:03:57 -05:00
parent 1c33d1af82
commit a70fb7f66f

View File

@ -1014,14 +1014,14 @@ def set_up_anidb_connection():
logger.log(u"anidb exception msg: " + str(e))
return False
if not sickbeard.ADBA_CONNECTION.authed():
try:
try:
if not sickbeard.ADBA_CONNECTION.authed():
sickbeard.ADBA_CONNECTION.auth(sickbeard.ANIDB_USERNAME, sickbeard.ANIDB_PASSWORD)
except Exception, e:
logger.log(u"anidb exception msg: " + str(e))
return False
else:
return True
else:
return True
except Exception as e:
logger.log(u"anidb exception msg: " + str(e))
return False
return sickbeard.ADBA_CONNECTION.authed()