aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcryptech_muxd4
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptech_muxd b/cryptech_muxd
index 8e57ef8..d28f758 100755
--- a/cryptech_muxd
+++ b/cryptech_muxd
@@ -437,8 +437,8 @@ def main():
if __name__ == "__main__":
try:
tornado.ioloop.IOLoop.current().run_sync(main)
- except KeyboardInterrupt:
- logger.debug("Normal SIGTERM exit")
+ except (SystemExit, KeyboardInterrupt):
+ pass
except:
logger.exception("Unhandled exception")
else: