diff options
Diffstat (limited to 'Lib/idlelib/editor.py')
-rw-r--r-- | Lib/idlelib/editor.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/editor.py b/Lib/idlelib/editor.py index d13ac3786d..e05b52a96d 100644 --- a/Lib/idlelib/editor.py +++ b/Lib/idlelib/editor.py @@ -943,7 +943,7 @@ class EditorWindow(object): elif long: title = long else: - title = "Untitled" + title = "untitled" icon = short or long or title if not self.get_saved(): title = "*%s*" % title @@ -965,7 +965,7 @@ class EditorWindow(object): if filename: filename = os.path.basename(filename) else: - filename = "Untitled" + filename = "untitled" # return unicode string to display non-ASCII chars correctly return self._filename_to_unicode(filename) |