Commit 7c994f2b authored by Jonas Kaufmann's avatar Jonas Kaufmann
Browse files

prevent interrupting Runtime twice

parent 1da567f2
...@@ -98,4 +98,6 @@ class Runtime(metaclass=ABCMeta): ...@@ -98,4 +98,6 @@ class Runtime(metaclass=ABCMeta):
As a consequence all currently running simulators should be stopped As a consequence all currently running simulators should be stopped
cleanly and their output collected. cleanly and their output collected.
""" """
if self._interrupted:
return
self._interrupted = True self._interrupted = True
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment