Remove obsolete kwarg
This commit is contained in:
parent
a65981c1de
commit
978278db7b
1 changed files with 2 additions and 4 deletions
|
@ -1072,7 +1072,7 @@ class API(object):
|
||||||
break
|
break
|
||||||
return media_id, poster, background
|
return media_id, poster, background
|
||||||
|
|
||||||
def lookup_fanart_tv(self, media_id, artworks, set_info=False):
|
def lookup_fanart_tv(self, media_id, artworks):
|
||||||
"""
|
"""
|
||||||
perform artwork lookup on fanart.tv
|
perform artwork lookup on fanart.tv
|
||||||
|
|
||||||
|
@ -1169,9 +1169,7 @@ class API(object):
|
||||||
artworks['poster'] = poster
|
artworks['poster'] = poster
|
||||||
if background is not None:
|
if background is not None:
|
||||||
artworks['fanart'] = background
|
artworks['fanart'] = background
|
||||||
artworks = self.lookup_fanart_tv(external_id,
|
artworks = self.lookup_fanart_tv(external_id, artworks)
|
||||||
artworks,
|
|
||||||
set_info=True)
|
|
||||||
else:
|
else:
|
||||||
LOG.info('Did not find a set/collection ID on TheMovieDB using %s.'
|
LOG.info('Did not find a set/collection ID on TheMovieDB using %s.'
|
||||||
' Artwork will be missing.', self.titles()[0])
|
' Artwork will be missing.', self.titles()[0])
|
||||||
|
|
Loading…
Reference in a new issue