Fixes for stupid things found at installation.
[cryptomail] / bin / cryptomail
index 0c0ed94..54f8483 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):