oops string bug

This commit is contained in:
Tim Bentley 2010-03-27 07:03:12 +00:00
parent 611ae15790
commit 097a414c59
1 changed files with 1 additions and 1 deletions

View File

@ -411,7 +411,7 @@ class EditSongForm(QtGui.QDialog, Ui_EditSongDialog):
self.SongTabWidget.setCurrentIndex(2)
self.AuthorsListView.setFocus()
#split the verse list by space and mark lower case for testing
taglist = self.trUtf8(' bcitped')
taglist = unicode(self.trUtf8(' bcitped'))
for verse in unicode(self.VerseOrderEdit.text()).lower().split(u' '):
if len(verse) > 1:
if verse[0:1] == u'%s' % self.trUtf8('v') and verse[1:].isdigit():