1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Merge pull request #1363 from fernandog/trakt_remove_traceback

Trakt remove traceback
This commit is contained in:
Alexandre Beloin 2015-02-20 09:38:47 -05:00
commit b0e15d6cf8

View File

@ -53,8 +53,8 @@ class TraktChecker():
# sync trakt.tv library with sickrage library
if sickbeard.TRAKT_SYNC:
self.syncLibrary()
except Exception:
logger.log(traceback.format_exc(), logger.DEBUG)
except Exception as e:
logger.log('Trakt: Error Syncing library. Reason: {0}'.format(str(e)), logger.DEBUG)
def findShow(self, indexer, indexerid):
traktShow = None