From ec8291ba771421325169733adeafbaeaa35cd3e7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Mart=C3=AD?= Date: Thu, 3 Jul 2014 18:26:49 +0200 Subject: [PATCH] No need to print a trace when the user did a ^C --- fdroid | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fdroid b/fdroid index 93a83579..288977b6 100755 --- a/fdroid +++ b/fdroid @@ -95,6 +95,9 @@ def main(): else: logging.critical(str(e)) sys.exit(1) + except KeyboardInterrupt: + print('') + sys.exit(1) # These should only be unexpected crashes due to bugs in the code # str(e) often doesn't contain a reason, so just show the backtrace except Exception, e: -- 2.30.2