1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-13 11:32:20 -05:00

Fixed NoneType error when mapping indexers to show

This commit is contained in:
echel0n 2014-08-09 00:19:29 +00:00
parent 3592e559d0
commit c658fe0f26

View File

@ -1179,9 +1179,9 @@ def mapIndexersToShow(showObj):
except sickbeard.indexer_shownotfound:
logger.log(u"Unable to map " + sickbeard.indexerApi(showObj.indexer).name + "->" + sickbeard.indexerApi(
indexer).name + " for show: " + showObj.name + ", skipping it", logger.DEBUG)
mapped_show = None
continue
if len(mapped_show) and not len(mapped_show) > 1:
if mapped_show and len(mapped_show) == 1:
logger.log(u"Mapping " + sickbeard.indexerApi(showObj.indexer).name + "->" + sickbeard.indexerApi(
indexer).name + " for show: " + showObj.name, logger.DEBUG)