summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/ScriptBinding.py
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2006-07-24 18:05:51 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2006-07-24 18:05:51 (GMT)
commita2946a437ee7886e6192b9e02725b8a04cdc80ae (patch)
treeda0a36f7b5334342b544cb8a4aa444d0d93930c2 /Lib/idlelib/ScriptBinding.py
parentb3c4d16e688d073dae92f272d66b6efa4b70a734 (diff)
downloadcpython-a2946a437ee7886e6192b9e02725b8a04cdc80ae.zip
cpython-a2946a437ee7886e6192b9e02725b8a04cdc80ae.tar.gz
cpython-a2946a437ee7886e6192b9e02725b8a04cdc80ae.tar.bz2
- 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 084c607..878425d 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()