Commit b7343ced authored by Thibault VINCENT's avatar Thibault VINCENT
Browse files

fix: misuse of try/except preventing KeyboardError to reach toplevel

parent 2a6ddace
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ class CCNode(object):
        try:
            self._manager.run()
        except:
            pass # FIXME
            raise
        finally:
            self._scheduler_stopped.set()