1
0
mirror of https://gitlab.com/openlp/openlp.git synced 2024-09-28 19:07:35 +00:00

Add a print to assist with debugging

This commit is contained in:
Raoul Snyman 2019-03-26 14:24:05 -07:00
parent fb3f5ca0b4
commit 899dfcc390

View File

@ -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)