From cdc3d68a2c9ea55577de5370c9d3a863168be132 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Tue, 26 Mar 2019 13:57:53 -0700 Subject: [PATCH] Add a print to assist with debugging --- openlp/plugins/songs/lib/importers/presentationmanager.py | 1 + 1 file changed, 1 insertion(+) 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)