diff options
author | Cheryl Sabella <cheryl.sabella@gmail.com> | 2017-11-22 19:05:25 -0500 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2017-11-22 19:05:25 -0500 |
commit | 20d48a44a54ed5e4a6df00e89ae27e3983128265 (patch) | |
tree | d3e8f1549f4964e84bebe727876267f48d1978f4 /Lib/idlelib/editor.py | |
parent | d4341109746aa15e1909e63b30b93b6133ffe401 (diff) | |
download | cpython-git-20d48a44a54ed5e4a6df00e89ae27e3983128265.tar.gz |
bpo-32100: IDLE: Fix pathbrowser errors; improve tests. (#4484)
Patch mostly by Cheryl Sabella
Diffstat (limited to 'Lib/idlelib/editor.py')
-rw-r--r-- | Lib/idlelib/editor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/editor.py b/Lib/idlelib/editor.py index 68450c921f..b51c45c97e 100644 --- a/Lib/idlelib/editor.py +++ b/Lib/idlelib/editor.py @@ -668,7 +668,7 @@ class EditorWindow(object): def open_path_browser(self, event=None): from idlelib import pathbrowser - pathbrowser.PathBrowser(self.flist) + pathbrowser.PathBrowser(self.root) return "break" def open_turtle_demo(self, event = None): |