From 47bdec25eb51d2dfbcd28af512cfbd4f4165b332 Mon Sep 17 00:00:00 2001 From: Dolph Mathews Date: Thu, 23 May 2013 14:58:01 -0500 Subject: eliminate 'except:' (flake8 H201) Change-Id: Ic53b43b96c490557352be212ac79a7e8a249c21a --- keystone/common/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'keystone/common') diff --git a/keystone/common/utils.py b/keystone/common/utils.py index 9536cdc7..e35bde01 100644 --- a/keystone/common/utils.py +++ b/keystone/common/utils.py @@ -228,7 +228,7 @@ def setup_remote_pydev_debug(): stdoutToServer=True, stderrToServer=True) return True - except: + except Exception: LOG.exception(_( 'Error setting up the debug environment. Verify that the ' 'option --debug-url has the format : and that a ' -- cgit