summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/config_key.py
diff options
context:
space:
mode:
authorterryjreedy <tjreedy@udel.edu>2017-06-22 02:46:07 (GMT)
committerGitHub <noreply@github.com>2017-06-22 02:46:07 (GMT)
commit396998e0c6ee7e555133c53ce42224046b1255f7 (patch)
tree2b7b07dc04aaad4e046e5165aa3f4283c6a1ac15 /Lib/idlelib/config_key.py
parent296dc492cc610f349db39a082a18042a79d0dc46 (diff)
downloadcpython-396998e0c6ee7e555133c53ce42224046b1255f7.zip
cpython-396998e0c6ee7e555133c53ce42224046b1255f7.tar.gz
cpython-396998e0c6ee7e555133c53ce42224046b1255f7.tar.bz2
[3.6] Fix typo in idlelib.config_key.py (GH-2322) (#2323)
(cherry picked from commit a0e911b)
Diffstat (limited to 'Lib/idlelib/config_key.py')
-rw-r--r--Lib/idlelib/config_key.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/config_key.py b/Lib/idlelib/config_key.py
index 2602293..479d6ad 100644
--- a/Lib/idlelib/config_key.py
+++ b/Lib/idlelib/config_key.py
@@ -186,7 +186,7 @@ class GetKeysDialog(Toplevel):
def LoadFinalKeyList(self):
#these tuples are also available for use in validity checks
- self.functionKeys=('F1','F2','F2','F4','F5','F6','F7','F8','F9',
+ self.functionKeys=('F1','F2','F3','F4','F5','F6','F7','F8','F9',
'F10','F11','F12')
self.alphanumKeys=tuple(string.ascii_lowercase+string.digits)
self.punctuationKeys=tuple('~!@#%^&*()_-+={}[]|;:,.<>/?')