removed space

This commit is contained in:
Andreas Preikschat 2011-12-15 16:27:17 +01:00
parent d2cf6aa684
commit 27843ae718
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ class ActionList(object):
# STRG+O (German) is converted to CTRL+O, which is only done when we
# convert the strings in this way (QKeySequence -> QString -> unicode).
shortcuts = map(QtGui.QKeySequence, shortcuts)
shortcuts = map(unicode, map(QtGui.QKeySequence.toString, shortcuts))
shortcuts = map(unicode, map(QtGui.QKeySequence.toString, shortcuts))
# Check the alternate shortcut first, to avoid problems when the
# alternate shortcut becomes the primary shortcut after removing the
# (initial) primary shortcut due to conflicts.