summaryrefslogtreecommitdiff
path: root/Tools/idle/EditorWindow.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/idle/EditorWindow.py')
-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 977be6bf02..1b9db06d18 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)