Fix xml logging

This commit is contained in:
tomkat83 2016-12-29 15:42:19 +01:00
parent 253feb9c69
commit a9f59868f0

View file

@ -135,7 +135,8 @@ def _log_xml(xml):
log.error('Did not receive an XML. Answer was: %s' % xml)
else:
from xml.etree.ElementTree import dump
log.error('XML received from the PMS: %s' % dump(xml))
log.error('XML received from the PMS:')
dump(xml)
def _get_playListVersion_from_xml(playlist, xml):