From cea90dffd41bbe72c9721992b82b8a0a4211e150 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Eckel?= Date: Fri, 31 Mar 2023 14:29:03 +0200 Subject: [PATCH] removed keyboard termination : exceptoin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Eckel --- planetmint/ipc/exchange.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/planetmint/ipc/exchange.py b/planetmint/ipc/exchange.py index 4f17543..c621cd9 100644 --- a/planetmint/ipc/exchange.py +++ b/planetmint/ipc/exchange.py @@ -72,6 +72,8 @@ class Exchange: return else: self.dispatch(event) + except KeyboardInterrupt: + return except Exception as e: logger.debug(f"Exchange Exception: {e}")