From 69de990aa574ff68ab82b3179a5683af9fd43187 Mon Sep 17 00:00:00 2001 From: Jon Tibble Date: Tue, 22 Sep 2009 18:43:07 +0100 Subject: [PATCH] More spacing --- openlp/plugins/custom/forms/editcustomform.py | 4 ++-- openlp/plugins/custom/lib/mediaitem.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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])