chiark / gitweb /
Fixes for stupid things found at installation.
[cryptomail] / bin / cryptomail
index 0c0ed94faaa450a08159c2daf74e60958fc79168..54f8483d4b9e4b80600f5641e7fadbdcf4c939a1 100755 (executable)
@@ -610,7 +610,9 @@ def main():
 
 try:
   main()
-except Exception:
+except SystemExit:
+  raise
+except:
   ty, exc, tb = exc_info()
   moan('unhandled %s exception' % ty.__name__)
   for file, line, func, text in TB.extract_tb(tb):