diff --git a/openlp/plugins/songs/lib/importers/presentationmanager.py b/openlp/plugins/songs/lib/importers/presentationmanager.py index a5bf55a4a..c00aa069e 100644 --- a/openlp/plugins/songs/lib/importers/presentationmanager.py +++ b/openlp/plugins/songs/lib/importers/presentationmanager.py @@ -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)