summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-10-16 16:09:57 (GMT)
committerGuido van Rossum <guido@python.org>1998-10-16 16:09:57 (GMT)
commite1dedc096e63afb186cb44239fe2add2995c1c13 (patch)
tree62b7666d5dbdff57283e3750490b6764ecdcc25e /Tools
parent04430793ed367b5342441d4596890afd6388f37b (diff)
downloadcpython-e1dedc096e63afb186cb44239fe2add2995c1c13.zip
cpython-e1dedc096e63afb186cb44239fe2add2995c1c13.tar.gz
cpython-e1dedc096e63afb186cb44239fe2add2995c1c13.tar.bz2
Clarify 'Open Module' dialog text
Diffstat (limited to 'Tools')
-rw-r--r--Tools/idle/EditorWindow.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/idle/EditorWindow.py b/Tools/idle/EditorWindow.py
index 977be6b..1b9db06 100644
--- a/Tools/idle/EditorWindow.py
+++ b/Tools/idle/EditorWindow.py
@@ -111,7 +111,8 @@ class EditorWindow:
name = string.strip(name)
if not name:
name = tkSimpleDialog.askstring("Module",
- "Module name:",
+ "Enter the name of a Python module\n"
+ "to search on sys.path and open:",
parent=self.text)
if name:
name = string.strip(name)