summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-06-07 20:11:03 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-06-07 20:11:03 (GMT)
commit1c0fceeaa78c1cef7b4ed9eded85310135fa3bad (patch)
tree45f7b227213235e067a6cd806ca6ecdf9d5bb4e7 /Mac
parentfd771a6a856dc8fc0fbf5f14dcf28e74ff02ec8f (diff)
downloadcpython-1c0fceeaa78c1cef7b4ed9eded85310135fa3bad.zip
cpython-1c0fceeaa78c1cef7b4ed9eded85310135fa3bad.tar.gz
cpython-1c0fceeaa78c1cef7b4ed9eded85310135fa3bad.tar.bz2
Minor bugfix: one uthread-dependent cleanup had "if not uthread" in stead of "if uthread".
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Tools/IDE/PyEdit.py2
1 files changed, 1 insertions, 1 deletions
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="<string>", debugging=0,
return
else:
tracebackwindow.traceback(1, filename)
- if not uthread2:
+ if uthread2:
uthread2.globalUnlock()
if debugging:
sys.settrace(None)