summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/history.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/idlelib/history.py')
-rw-r--r--Lib/idlelib/history.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/history.py b/Lib/idlelib/history.py
index 078af29..6068d4f 100644
--- a/Lib/idlelib/history.py
+++ b/Lib/idlelib/history.py
@@ -1,11 +1,11 @@
"Implement Idle Shell history mechanism with History class"
-from idlelib.configHandler import idleConf
+from idlelib.config import idleConf
class History:
''' Implement Idle Shell history mechanism.
- store - Store source statement (called from PyShell.resetoutput).
+ store - Store source statement (called from pyshell.resetoutput).
fetch - Fetch stored statement matching prefix already entered.
history_next - Bound to <<history-next>> event (default Alt-N).
history_prev - Bound to <<history-prev>> event (default Alt-P).