From 7d8583f7cc418812460f37589d1d97dcb391ea78 Mon Sep 17 00:00:00 2001 From: rofl0r Date: Sun, 6 Jan 2019 16:30:32 +0000 Subject: [PATCH] no need to re-raise keyboardinterrupt --- proxywatchd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxywatchd.py b/proxywatchd.py index b0363e3..e5f4511 100644 --- a/proxywatchd.py +++ b/proxywatchd.py @@ -264,7 +264,7 @@ if __name__ == '__main__': w.start() w.run() except KeyboardInterrupt as e: - raise e + pass finally: w.stop() w.finish()