fixed encoding error
git-svn-id: http://comictagger.googlecode.com/svn/trunk@267 6c5673fe-1810-88d6-992b-cd32ca31540c
This commit is contained in:
parent
4343f3f08d
commit
e14c9dfe19
@ -773,8 +773,8 @@ class TaggerWindow( QtGui.QMainWindow):
|
||||
md.credits = list()
|
||||
row = 0
|
||||
while row < self.twCredits.rowCount():
|
||||
role = str(self.twCredits.item(row, 1).text())
|
||||
name = str(self.twCredits.item(row, 2).text())
|
||||
role = u"{0}".format(self.twCredits.item(row, 1).text())
|
||||
name = u"{0}".format(self.twCredits.item(row, 2).text())
|
||||
primary_flag = self.twCredits.item( row, 0 ).text() != ""
|
||||
|
||||
md.addCredit( name, role, bool(primary_flag) )
|
||||
|
Loading…
Reference in New Issue
Block a user