From 0effcb564fc13fd85b18ed883de83da386fe40c7 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Tue, 26 Mar 2019 22:45:05 -0700 Subject: [PATCH] More print-statement debugging --- openlp/plugins/songs/lib/importers/presentationmanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/plugins/songs/lib/importers/presentationmanager.py b/openlp/plugins/songs/lib/importers/presentationmanager.py index 04180931d..70e2380b2 100644 --- a/openlp/plugins/songs/lib/importers/presentationmanager.py +++ b/openlp/plugins/songs/lib/importers/presentationmanager.py @@ -59,7 +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) + print(etree.tostring(tree)) root = objectify.fromstring(etree.tostring(tree)) self.process_song(root, file_path)