From: Jack Jansen Date: Wed, 7 Jun 2000 20:11:03 +0000 (+0000) Subject: Minor bugfix: one uthread-dependent cleanup had "if not uthread" in stead of "if... X-Git-Tag: v2.0b1~1552 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1c0fceeaa78c1cef7b4ed9eded85310135fa3bad;p=thirdparty%2FPython%2Fcpython.git Minor bugfix: one uthread-dependent cleanup had "if not uthread" in stead of "if uthread". --- diff --git a/Mac/Tools/IDE/PyEdit.py b/Mac/Tools/IDE/PyEdit.py index 8a70cdb69b02..bff5baf534cd 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)