summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/WindowList.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2006-04-17 23:13:00 (GMT)
committerGuido van Rossum <guido@python.org>2006-04-17 23:13:00 (GMT)
commit69e8084ad683bb57a2e5a874eabc714f1d3af644 (patch)
tree7514a75376c0fd147a7c26af634500882ae6bb49 /Lib/idlelib/WindowList.py
parent07519f8712241397bcb98efa19e2e7ec9257c18c (diff)
downloadcpython-69e8084ad683bb57a2e5a874eabc714f1d3af644.zip
cpython-69e8084ad683bb57a2e5a874eabc714f1d3af644.tar.gz
cpython-69e8084ad683bb57a2e5a874eabc714f1d3af644.tar.bz2
Fix two errors that prevented "make libinstall" from working:
- a line indented with tabs; - a function named 'as'.
Diffstat (limited to 'Lib/idlelib/WindowList.py')
-rw-r--r--Lib/idlelib/WindowList.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/WindowList.py b/Lib/idlelib/WindowList.py
index d0123d8..2fad998 100644
--- a/Lib/idlelib/WindowList.py
+++ b/Lib/idlelib/WindowList.py
@@ -45,7 +45,7 @@ class WindowList:
try:
callback()
except:
- t, v, tb = sys.exc_info()
+ t, v, tb = sys.exc_info()
print "warning: callback failed in WindowList", t, ":", v
registry = WindowList()