Fix logging

This commit is contained in:
croneter 2018-02-07 14:28:54 +01:00
parent e744ff2b97
commit 5f3aa91a54

View file

@ -315,7 +315,7 @@ def _get_playListVersion_from_xml(playlist, xml):
playlist.version = int(xml.attrib['%sVersion' % playlist.kind]) playlist.version = int(xml.attrib['%sVersion' % playlist.kind])
except (TypeError, AttributeError, KeyError): except (TypeError, AttributeError, KeyError):
raise PlaylistError('Could not get new playlist Version for playlist ' raise PlaylistError('Could not get new playlist Version for playlist '
'%s', playlist) '%s' % playlist)
def get_playlist_details_from_xml(playlist, xml): def get_playlist_details_from_xml(playlist, xml):