From 27843ae71889d5ef7ff416d71de727856cffc482 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Thu, 15 Dec 2011 16:27:17 +0100 Subject: [PATCH] removed space --- openlp/core/utils/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/utils/actions.py b/openlp/core/utils/actions.py index 5bf4d6593..857e8ceed 100644 --- a/openlp/core/utils/actions.py +++ b/openlp/core/utils/actions.py @@ -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.