From 34162933282634c35f5f23a7219f6f871e384b72 2015-04-15 18:53:44 From: Matthias Bussonnier Date: 2015-04-15 18:53:44 Subject: [PATCH] dont' swallow sys.exit --- diff --git a/IPython/core/application.py b/IPython/core/application.py index 419ab04..f0d9aa5 100644 --- a/IPython/core/application.py +++ b/IPython/core/application.py @@ -280,7 +280,7 @@ class BaseIPythonApplication(Application): else: msg = self.log.debug msg("Config file not found, skipping: %s", config_file_name) - except: + except Exception: # For testing purposes. if not suppress_errors: raise