diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2007-10-04 01:49:54 +0000 |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2007-10-04 01:49:54 +0000 |
commit | 67bd62fd6cda77f5c315e1e77b54fa92c024f7bf (patch) | |
tree | 0ad6eba26fa139d9cdec32370d5843685aa1954a /Lib/idlelib/AutoComplete.py | |
parent | 50e90e265fc3205fc6cc0193d3cebe08e9859b0a (diff) | |
download | cpython-git-67bd62fd6cda77f5c315e1e77b54fa92c024f7bf.tar.gz |
Assume that the user knows when he wants to end the line; don't insert
something he didn't select or complete.
Diffstat (limited to 'Lib/idlelib/AutoComplete.py')
-rw-r--r-- | Lib/idlelib/AutoComplete.py | 2 |
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>>"), ]) ] |