diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-10-27 07:38:02 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-10-27 07:38:02 (GMT) |
commit | 4c973e9a4b1ffbbe64051267b248cd389fd0636f (patch) | |
tree | f48c1fbf6905d712365526bda2923e3afad1d06f /Lib | |
parent | 5487c13e44ec851023383edda6e33458aaa1310f (diff) | |
download | cpython-4c973e9a4b1ffbbe64051267b248cd389fd0636f.zip cpython-4c973e9a4b1ffbbe64051267b248cd389fd0636f.tar.gz cpython-4c973e9a4b1ffbbe64051267b248cd389fd0636f.tar.bz2 |
Display IDLE warning as a warning rather than as an error.
Clarify message and expected action for beginners.
Guard against astral chars in path incorporated in message.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index 0196344..8d6549c 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -887,9 +887,11 @@ class EditorWindow(object): except OSError as err: if not getattr(self.root, "recentfilelist_error_displayed", False): self.root.recentfilelist_error_displayed = True - tkMessageBox.showerror(title='IDLE Error', - message='Unable to update Recent Files list:\n%s' - % str(err), + tkMessageBox.showwarning(title='IDLE Warning', + message="Cannot update File menu Recent Files list. " + "Your operating system says:\n%s\n" + "Select OK and IDLE will continue without updating." + % self._filename_to_unicode(str(err)), parent=self.text) # for each edit window instance, construct the recent files menu for instance in self.top.instance_dict: |