From: Guido van Rossum Date: Fri, 16 Oct 1998 16:09:57 +0000 (+0000) Subject: Clarify 'Open Module' dialog text X-Git-Tag: v1.5.2a2~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e1dedc096e63afb186cb44239fe2add2995c1c13;p=python Clarify 'Open Module' dialog text --- 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)