summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/undo.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/idlelib/undo.py')
-rw-r--r--Lib/idlelib/undo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/undo.py b/Lib/idlelib/undo.py
index 1c2502d..3e94b69 100644
--- a/Lib/idlelib/undo.py
+++ b/Lib/idlelib/undo.py
@@ -1,7 +1,7 @@
import string
from tkinter import *
-from idlelib.Delegator import Delegator
+from idlelib.delegator import Delegator
#$ event <<redo>>
#$ win <Control-y>
@@ -340,7 +340,7 @@ class CommandSequence(Command):
def _undo_delegator(parent): # htest #
import re
import tkinter as tk
- from idlelib.Percolator import Percolator
+ from idlelib.percolator import Percolator
undowin = tk.Toplevel()
undowin.title("Test UndoDelegator")
width, height, x, y = list(map(int, re.split('[x+]', parent.geometry())))