diff options
| author | Joe Gordon <jogo@cloudscaling.com> | 2012-01-04 14:16:40 -0800 |
|---|---|---|
| committer | Joe Gordon <jogo@cloudscaling.com> | 2012-01-04 14:16:40 -0800 |
| commit | cf4505a7b34858efe51a76434617d47e8f9d4ea9 (patch) | |
| tree | f5cdcdfcdd17b5b6ad7fa65ea92536b69899caa1 | |
| parent | 7e9db618f41fd7afcc2479bd472643a87e9bd949 (diff) | |
| download | nova-cf4505a7b34858efe51a76434617d47e8f9d4ea9.tar.gz nova-cf4505a7b34858efe51a76434617d47e8f9d4ea9.tar.xz nova-cf4505a7b34858efe51a76434617d47e8f9d4ea9.zip | |
Fix except format to match HACKING
Change-Id: Iecfcde15db9f1d4fa2f6bb6f1c40253440b9e758
| -rw-r--r-- | nova/api/ec2/cloud.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/ec2/cloud.py b/nova/api/ec2/cloud.py index 09324bb3c..01cf61860 100644 --- a/nova/api/ec2/cloud.py +++ b/nova/api/ec2/cloud.py @@ -398,7 +398,7 @@ class CloudController(object): (out, err) = utils.execute('ssh-keygen', '-l', '-f', '%s' % (pubfile)) return out.split(' ')[1] - except: + except Exception: raise finally: shutil.rmtree(tmpdir) |
