From 422fa5eab16b45213a155a585ae4f81b6af6ece6 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Tue, 26 Mar 2019 22:42:11 -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 70e2380b2..04180931d 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)