From 1c0fceeaa78c1cef7b4ed9eded85310135fa3bad Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Wed, 7 Jun 2000 20:11:03 +0000 Subject: Minor bugfix: one uthread-dependent cleanup had "if not uthread" in stead of "if uthread". --- Mac/Tools/IDE/PyEdit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/Tools/IDE/PyEdit.py b/Mac/Tools/IDE/PyEdit.py index 8a70cdb..bff5baf 100644 --- a/Mac/Tools/IDE/PyEdit.py +++ b/Mac/Tools/IDE/PyEdit.py @@ -1120,7 +1120,7 @@ def execstring(pytext, globals, locals, filename="", debugging=0, return else: tracebackwindow.traceback(1, filename) - if not uthread2: + if uthread2: uthread2.globalUnlock() if debugging: sys.settrace(None) -- cgit v0.12