From 20d48a44a54ed5e4a6df00e89ae27e3983128265 Mon Sep 17 00:00:00 2001 From: Cheryl Sabella Date: Wed, 22 Nov 2017 19:05:25 -0500 Subject: bpo-32100: IDLE: Fix pathbrowser errors; improve tests. (#4484) Patch mostly by Cheryl Sabella --- Lib/idlelib/editor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/idlelib/editor.py') diff --git a/Lib/idlelib/editor.py b/Lib/idlelib/editor.py index 68450c921f2..b51c45c97e5 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): -- cgit v1.2.3