forked from openlp/openlp
Unused variable fixes
This commit is contained in:
parent
82a6bc791f
commit
2f840944e9
@ -498,7 +498,6 @@ class EditSongForm(QtGui.QDialog, Ui_EditSongDialog):
|
|||||||
sxml = SongXMLBuilder()
|
sxml = SongXMLBuilder()
|
||||||
sxml.new_document()
|
sxml.new_document()
|
||||||
sxml.add_lyrics_to_song()
|
sxml.add_lyrics_to_song()
|
||||||
count = 1
|
|
||||||
text = u' '
|
text = u' '
|
||||||
for i in range (0, self.VerseListWidget.count()):
|
for i in range (0, self.VerseListWidget.count()):
|
||||||
item = self.VerseListWidget.item(i)
|
item = self.VerseListWidget.item(i)
|
||||||
@ -506,7 +505,6 @@ class EditSongForm(QtGui.QDialog, Ui_EditSongDialog):
|
|||||||
bits = verseId.split(u':')
|
bits = verseId.split(u':')
|
||||||
sxml.add_verse_to_lyrics(bits[0], bits[1], unicode(item.text()))
|
sxml.add_verse_to_lyrics(bits[0], bits[1], unicode(item.text()))
|
||||||
text = text + unicode(self.VerseListWidget.item(i).text()) + u' '
|
text = text + unicode(self.VerseListWidget.item(i).text()) + u' '
|
||||||
count += 1
|
|
||||||
text = text.replace(u'\'', u'')
|
text = text.replace(u'\'', u'')
|
||||||
text = text.replace(u',', u'')
|
text = text.replace(u',', u'')
|
||||||
text = text.replace(u';', u'')
|
text = text.replace(u';', u'')
|
||||||
|
@ -282,7 +282,7 @@ class SongMediaItem(MediaManagerItem):
|
|||||||
raw_footer = []
|
raw_footer = []
|
||||||
author_list = u''
|
author_list = u''
|
||||||
author_audit = []
|
author_audit = []
|
||||||
ccl = u''
|
ccli = u''
|
||||||
if self.remoteTriggered is None:
|
if self.remoteTriggered is None:
|
||||||
item = self.ListView.currentItem()
|
item = self.ListView.currentItem()
|
||||||
if item is None:
|
if item is None:
|
||||||
|
@ -206,7 +206,6 @@ def import_bible():
|
|||||||
rows = old_cursor.fetchall()
|
rows = old_cursor.fetchall()
|
||||||
if debug or verbose:
|
if debug or verbose:
|
||||||
print 'done.'
|
print 'done.'
|
||||||
song_map = {}
|
|
||||||
for row in rows:
|
for row in rows:
|
||||||
book_id = int(row[1])
|
book_id = int(row[1])
|
||||||
chapter = int(row[2])
|
chapter = int(row[2])
|
||||||
|
Loading…
Reference in New Issue
Block a user