summaryrefslogtreecommitdiff
path: root/Lib/idlelib/AutoComplete.py
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2008-02-14 04:19:41 +0000
committerKurt B. Kaiser <kbk@shore.net>2008-02-14 04:19:41 +0000
commit2fbad0e99bf581dc8e5e3afa8253765ebafd9493 (patch)
tree2d9f260f4dc47249dd56e1ec385f86ee086049ae /Lib/idlelib/AutoComplete.py
parent60d9f8df383cfc89bb1f927c06393cfcb12fe7d6 (diff)
downloadcpython-git-2fbad0e99bf581dc8e5e3afa8253765ebafd9493.tar.gz
Assume that the user knows when he wants to end the line; don't insert
something he didn't select or complete. Backport r58306
Diffstat (limited to 'Lib/idlelib/AutoComplete.py')
-rw-r--r--Lib/idlelib/AutoComplete.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/AutoComplete.py b/Lib/idlelib/AutoComplete.py
index 7085386621..e1549be838 100644
--- a/Lib/idlelib/AutoComplete.py
+++ b/Lib/idlelib/AutoComplete.py
@@ -27,7 +27,7 @@ class AutoComplete:
menudefs = [
('edit', [
- ("Show completions", "<<force-open-completions>>"),
+ ("Show Completions", "<<force-open-completions>>"),
])
]