Fix ReactorNotRestartable exception after receiving SIGINT

pull/2676/head
Piotr Roslaniec 2021-04-29 10:10:56 +02:00
parent 64e629b337
commit 3879472f4d
1 changed files with 1 additions and 1 deletions

View File

@ -1354,7 +1354,7 @@ class Ursula(Teacher, Character, Worker):
emitter.message(f"{e.__class__.__name__} {e}", color='red', bold=True)
raise # Crash :-(
if start_reactor: # ... without hendrix
elif start_reactor: # ... without hendrix
reactor.run() # <--- Blocking Call (Reactor)
def stop(self, halt_reactor: bool = False) -> None: