Skip to content

Commit

Permalink
fix: corrects the interrupt signal call arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
BHSDuncan authored and StraToN committed May 31, 2023
1 parent 02822ec commit 3077907
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func run() -> int:
if _is_interrupted:
final_rc = ESCExecution.RC_INTERRUPTED
statement.interrupt()
emit_signal("interrupted", self, final_rc)
emit_signal("interrupted", self, statement, final_rc)
return final_rc

if statement.is_valid():
Expand Down

0 comments on commit 3077907

Please sign in to comment.