diff options
| author | Matthew Hooker <matt@cloudscaling.com> | 2011-08-04 15:30:39 -0400 |
|---|---|---|
| committer | Matthew Hooker <matt@cloudscaling.com> | 2011-08-04 15:30:39 -0400 |
| commit | c56d20383a432aa2c83e7e3c2beebdb49cbe9efc (patch) | |
| tree | 02a198adc0e0c92270c3a0f3bb7aa8c818e4e4d8 /nova/cloudpipe | |
| parent | 7e70e5ff7c39862a328b304f13778936e422a212 (diff) | |
| download | nova-c56d20383a432aa2c83e7e3c2beebdb49cbe9efc.tar.gz nova-c56d20383a432aa2c83e7e3c2beebdb49cbe9efc.tar.xz nova-c56d20383a432aa2c83e7e3c2beebdb49cbe9efc.zip | |
fix syntax error
Diffstat (limited to 'nova/cloudpipe')
| -rw-r--r-- | nova/cloudpipe/pipelib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/cloudpipe/pipelib.py b/nova/cloudpipe/pipelib.py index 46549c9d7..2c4673f9e 100644 --- a/nova/cloudpipe/pipelib.py +++ b/nova/cloudpipe/pipelib.py @@ -147,6 +147,6 @@ class CloudPipe(object): key_path = os.path.join(key_dir, '%s.pem' % key_name) with open(key_path, 'w') as f: f.write(private_key) - except exception.Duplicate, os.error, IOError: + except (exception.Duplicate, os.error, IOError): pass return key_name |
