mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-20 16:43:43 +00:00
fixed post-processing uncaught exception
This commit is contained in:
parent
9d191f6999
commit
4cd67aa6ec
1 changed files with 2 additions and 2 deletions
|
@ -816,8 +816,8 @@ class PostProcessor(object):
|
|||
|
||||
# try to find the file info
|
||||
(indexer_id, season, episodes) = self._find_info()
|
||||
if not (indexer_id or season or episodes):
|
||||
self._log(u"Can't find thhe show on any of the Indexers, skipping",
|
||||
if not (indexer_id and season and len(episodes)):
|
||||
self._log(u"Can't find the show on any of the Indexers, skipping",
|
||||
logger.WARNING)
|
||||
return False
|
||||
|
||||
|
|
Loading…
Reference in a new issue