Minor bugfix: one uthread-dependent cleanup had "if not uthread" in stead of "if uthread".

This commit is contained in:
Jack Jansen 2000-06-07 20:11:03 +00:00
parent fd771a6a85
commit 1c0fceeaa7
1 changed files with 1 additions and 1 deletions

View File

@ -1120,7 +1120,7 @@ def execstring(pytext, globals, locals, filename="<string>", debugging=0,
return
else:
tracebackwindow.traceback(1, filename)
if not uthread2:
if uthread2:
uthread2.globalUnlock()
if debugging:
sys.settrace(None)