Add a print to assist with debugging

This commit is contained in:
Raoul Snyman 2019-03-26 13:57:53 -07:00
parent 4072cd4e6e
commit cdc3d68a2c

View File

@ -63,6 +63,7 @@ class PresentationManagerImport(SongImport):
if tree.docinfo.encoding.lower() != 'unicode':
# If the XML string is a bytes object, lxml sometimes croaks
xml = xml.decode(tree.docinfo.encoding)
print(xml)
root = objectify.fromstring(xml)
self.process_song(root, file_path)