diff options
Diffstat (limited to 'scudcloud-1.0/lib/speller.py')
-rw-r--r-- | scudcloud-1.0/lib/speller.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scudcloud-1.0/lib/speller.py b/scudcloud-1.0/lib/speller.py index 11f365e..e60967c 100644 --- a/scudcloud-1.0/lib/speller.py +++ b/scudcloud-1.0/lib/speller.py @@ -80,7 +80,7 @@ class Speller(QObject): boldFont = menu.font() boldFont.setBold(True) for i in range(0, count): - action = QtGui.QAction(suggests[i], self) + action = QtGui.QAction(str(suggests[i]), self) action.triggered.connect(lambda:self.replaceWord(element, word)) action.setData(suggests[i]) action.setFont(boldFont) |