diff --git a/openlp/plugins/custom/forms/editcustomform.py b/openlp/plugins/custom/forms/editcustomform.py index 1ebeda7c8..6ead917e2 100644 --- a/openlp/plugins/custom/forms/editcustomform.py +++ b/openlp/plugins/custom/forms/editcustomform.py @@ -102,7 +102,7 @@ class EditCustomForm(QtGui.QDialog, Ui_customEditDialog): self.TitleEdit.setText(self.customSlide.title) self.CreditEdit.setText(self.customSlide.credits) - songXML=SongXMLParser(self.customSlide.text) + songXML = SongXMLParser(self.customSlide.text) verseList = songXML.get_verses() for verse in verseList: self.VerseListView.addItem(verse[1]) @@ -121,7 +121,7 @@ class EditCustomForm(QtGui.QDialog, Ui_customEditDialog): translate(u'customEditDialog', u'Error'), message, QtGui.QMessageBox.StandardButtons(QtGui.QMessageBox.Ok)) return - sxml=SongXMLBuilder() + sxml = SongXMLBuilder() sxml.new_document() sxml.add_lyrics_to_song() count = 1 diff --git a/openlp/plugins/custom/lib/mediaitem.py b/openlp/plugins/custom/lib/mediaitem.py index 8551c3ae0..d2614435d 100644 --- a/openlp/plugins/custom/lib/mediaitem.py +++ b/openlp/plugins/custom/lib/mediaitem.py @@ -105,7 +105,7 @@ class CustomMediaItem(MediaManagerItem): theme = customSlide.theme_name if len(theme) is not 0 : service_item.theme = theme - songXML=SongXMLParser(customSlide.text) + songXML = SongXMLParser(customSlide.text) verseList = songXML.get_verses() for verse in verseList: raw_slides.append(verse[1])