From 899dfcc39083f04d9e5f7cc8c3565148ab410b22 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Tue, 26 Mar 2019 14:24:05 -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 7bfe336ee..70e2380b2 100644 --- a/openlp/plugins/songs/lib/importers/presentationmanager.py +++ b/openlp/plugins/songs/lib/importers/presentationmanager.py @@ -59,6 +59,7 @@ class PresentationManagerImport(SongImport): translate('SongsPlugin.PresentationManagerImport', 'File is not in XML-format, which is the only format supported.')) continue + print(etree.tostring(tree)) root = objectify.fromstring(etree.tostring(tree)) self.process_song(root, file_path)