summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/filelist.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/idlelib/filelist.py')
-rw-r--r--Lib/idlelib/filelist.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/filelist.py b/Lib/idlelib/filelist.py
index a9989a8..b5af90cc 100644
--- a/Lib/idlelib/filelist.py
+++ b/Lib/idlelib/filelist.py
@@ -6,7 +6,7 @@ import tkinter.messagebox as tkMessageBox
class FileList:
# N.B. this import overridden in PyShellFileList.
- from idlelib.EditorWindow import EditorWindow
+ from idlelib.editor import EditorWindow
def __init__(self, root):
self.root = root
@@ -111,7 +111,7 @@ class FileList:
def _test():
- from idlelib.EditorWindow import fixwordbreaks
+ from idlelib.editor import fixwordbreaks
import sys
root = Tk()
fixwordbreaks(root)