Skip to content

Commit

Permalink
Merge pull request #12 from JdeRobot/issue-9
Browse files Browse the repository at this point in the history
RoboticsApplicationWrapper Hotfix
  • Loading branch information
ReyDoran authored May 9, 2023
2 parents 34fa179 + 241b32f commit e094590
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ def _create_process(self, cmd):
return psProcess

def terminate(self):
self.close_console()
self.running = False
stop_process_and_children(self.user_process)
if self.user_process != None:
stop_process_and_children(self.user_process)
self.user_process = None

def load_code(self, code: str):
Expand Down

0 comments on commit e094590

Please sign in to comment.