Bugfix for XBMC 12+ metadata parser

This commit is contained in:
echel0n 2014-03-11 12:59:48 -07:00
parent b435fc9d71
commit 3bdebb4e6d
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ class XBMC_12PlusMetadata(generic.GenericMetadata):
# check for title and id
try:
if getattr(myShow, 'seriesname', None) is None or getattr(myShow, 'id') is None:
if getattr(myShow, 'seriesname', None) is None or getattr(myShow, 'id', None) is None:
logger.log(u"Incomplete info for show with id " + str(show_ID) + " on " + show_obj.indexer + ", skipping it", logger.ERROR)
return False
except indexer_exceptions.indexer_attributenotfound: