commit | e1dedc096e63afb186cb44239fe2add2995c1c13 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri Oct 16 16:09:57 1998 +0000 |
committer | Guido van Rossum <guido@python.org> | Fri Oct 16 16:09:57 1998 +0000 |
tree | 62b7666d5dbdff57283e3750490b6764ecdcc25e | |
parent | 04430793ed367b5342441d4596890afd6388f37b [diff] [blame] |
Clarify 'Open Module' dialog text
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 @@ 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)