Fix logging
This commit is contained in:
parent
e744ff2b97
commit
5f3aa91a54
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||||
|
|
Loading…
Reference in a new issue