Fix two errors that prevented "make libinstall" from working:

- a line indented with tabs;
- a function named 'as'.
This commit is contained in:
Guido van Rossum 2006-04-17 23:13:00 +00:00
parent 07519f8712
commit 69e8084ad6
2 changed files with 3 additions and 3 deletions

View file

@ -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()