Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1c0fcee

Browse files
committed
Minor bugfix: one uthread-dependent cleanup had "if not uthread" in stead of "if uthread".
1 parent fd771a6 commit 1c0fcee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Mac/Tools/IDE/PyEdit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1120,7 +1120,7 @@ def execstring(pytext, globals, locals, filename="<string>", debugging=0,
11201120
return
11211121
else:
11221122
tracebackwindow.traceback(1, filename)
1123-
if not uthread2:
1123+
if uthread2:
11241124
uthread2.globalUnlock()
11251125
if debugging:
11261126
sys.settrace(None)

0 commit comments

Comments
 (0)