diff --git a/openlp/plugins/songs/lib/xml.py b/openlp/plugins/songs/lib/xml.py index 3b1cefaa7..aaf82b395 100644 --- a/openlp/plugins/songs/lib/xml.py +++ b/openlp/plugins/songs/lib/xml.py @@ -448,7 +448,7 @@ class OpenLyrics(object): text = text.replace(u'{/%s}' % tag, u'') # Replace \n with
. text = text.replace(u'\n', u'
') - element = etree.XML(u'' + text + u'') + element = etree.XML(u'%s' % text) verse_element.append(element) return element