summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/config_key.py
diff options
context:
space:
mode:
authorterryjreedy <tjreedy@udel.edu>2017-06-22 02:14:23 (GMT)
committerGitHub <noreply@github.com>2017-06-22 02:14:23 (GMT)
commita0e911b190a229693a1b9948caf768de0069046b (patch)
tree1ecbed9cd28ad231f1f3a1347e2206e817d9439c /Lib/idlelib/config_key.py
parentf3cffd2b7879d209f982de899b782fb89cfc410a (diff)
downloadcpython-a0e911b190a229693a1b9948caf768de0069046b.zip
cpython-a0e911b190a229693a1b9948caf768de0069046b.tar.gz
cpython-a0e911b190a229693a1b9948caf768de0069046b.tar.bz2
Fix typo in idlelib.config_key.py (#2322)
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('~!@#%^&*()_-+={}[]|;:,.<>/?')