summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/keybindingDialog.py
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2006-07-18 04:03:16 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2006-07-18 04:03:16 (GMT)
commit4b7e35b530d06780ff905df2669ebdf892d6f75f (patch)
tree5958866a26b7344748e963ca24505e3d2f1d945e /Lib/idlelib/keybindingDialog.py
parent18d2f39af71608162b28fe1f41aa3e76efd83410 (diff)
downloadcpython-4b7e35b530d06780ff905df2669ebdf892d6f75f.zip
cpython-4b7e35b530d06780ff905df2669ebdf892d6f75f.tar.gz
cpython-4b7e35b530d06780ff905df2669ebdf892d6f75f.tar.bz2
Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168.
Diffstat (limited to 'Lib/idlelib/keybindingDialog.py')
-rw-r--r--Lib/idlelib/keybindingDialog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/keybindingDialog.py b/Lib/idlelib/keybindingDialog.py
index 26d6ad1..aff9cac 100644
--- a/Lib/idlelib/keybindingDialog.py
+++ b/Lib/idlelib/keybindingDialog.py
@@ -202,7 +202,7 @@ class GetKeysDialog(Toplevel):
':':'colon',',':'comma','.':'period','<':'less','>':'greater',
'/':'slash','?':'question','Page Up':'Prior','Page Down':'Next',
'Left Arrow':'Left','Right Arrow':'Right','Up Arrow':'Up',
- 'Down Arrow': 'Down', 'Tab':'tab'}
+ 'Down Arrow': 'Down', 'Tab':'Tab'}
if key in translateDict.keys():
key = translateDict[key]
if 'Shift' in modifiers and key in string.ascii_lowercase: