summaryrefslogtreecommitdiff
path: root/Lib/idlelib/ScriptBinding.py
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2006-07-24 18:05:51 +0000
committerKurt B. Kaiser <kbk@shore.net>2006-07-24 18:05:51 +0000
commita2946a437ee7886e6192b9e02725b8a04cdc80ae (patch)
treeda0a36f7b5334342b544cb8a4aa444d0d93930c2 /Lib/idlelib/ScriptBinding.py
parentb3c4d16e688d073dae92f272d66b6efa4b70a734 (diff)
downloadcpython-git-a2946a437ee7886e6192b9e02725b8a04cdc80ae.tar.gz
- EditorWindow.test() was failing. Bug 1417598
M EditorWindow.py M ScriptBinding.py M NEWS.txt
Diffstat (limited to 'Lib/idlelib/ScriptBinding.py')
-rw-r--r--Lib/idlelib/ScriptBinding.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/ScriptBinding.py b/Lib/idlelib/ScriptBinding.py
index 084c60701e..878425dc1e 100644
--- a/Lib/idlelib/ScriptBinding.py
+++ b/Lib/idlelib/ScriptBinding.py
@@ -51,7 +51,7 @@ class ScriptBinding:
# Provide instance variables referenced by Debugger
# XXX This should be done differently
self.flist = self.editwin.flist
- self.root = self.flist.root
+ self.root = self.editwin.root
def check_module_event(self, event):
filename = self.getfilename()