1
0
mirror of https://github.com/moparisthebest/SickRage synced 2025-03-04 10:29:52 -05:00

fixed post-processing uncaught exception

This commit is contained in:
Jason Valdron 2014-04-30 19:26:39 -03:00
parent 9d191f6999
commit 4cd67aa6ec

View File

@ -816,8 +816,8 @@ class PostProcessor(object):
# try to find the file info # try to find the file info
(indexer_id, season, episodes) = self._find_info() (indexer_id, season, episodes) = self._find_info()
if not (indexer_id or season or episodes): if not (indexer_id and season and len(episodes)):
self._log(u"Can't find thhe show on any of the Indexers, skipping", self._log(u"Can't find the show on any of the Indexers, skipping",
logger.WARNING) logger.WARNING)
return False return False