Fix poster upload logger message

This commit is contained in:
JonnyWong16 2016-10-17 22:10:16 -07:00 committed by JonnyWong16
parent 0a4b3f02db
commit 7df455309e

View file

@ -731,6 +731,6 @@ def get_poster_info(metadata):
# Delete the cached poster # Delete the cached poster
os.remove(poster_file) os.remove(poster_file)
except Exception as e: except Exception as e:
logger.error(u"PlexPy Notifier :: Unable to retrieve poster for rating_key %s: %s." % (str(rating_key), e)) logger.error(u"PlexPy Notifier :: Unable to retrieve poster for rating_key %s: %s." % (str(metadata['rating_key']), e))
return poster_info return poster_info