diff options
| author | Dolph Mathews <dolph.mathews@gmail.com> | 2013-05-23 14:58:01 -0500 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-05-23 23:48:49 +0000 |
| commit | 47bdec25eb51d2dfbcd28af512cfbd4f4165b332 (patch) | |
| tree | 4ea16c843023941d895df44d70df7f48d470d8a9 /keystone/common | |
| parent | f9b535c84ed22f6831165cb0807029a44a01bddb (diff) | |
eliminate 'except:' (flake8 H201)
Change-Id: Ic53b43b96c490557352be212ac79a7e8a249c21a
Diffstat (limited to 'keystone/common')
| -rw-r--r-- | keystone/common/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 <host>:<port> and that a ' |
