summaryrefslogtreecommitdiffstats
path: root/nova/cloudpipe
diff options
context:
space:
mode:
authorMatthew Hooker <matt@cloudscaling.com>2011-08-04 15:30:39 -0400
committerMatthew Hooker <matt@cloudscaling.com>2011-08-04 15:30:39 -0400
commitc56d20383a432aa2c83e7e3c2beebdb49cbe9efc (patch)
tree02a198adc0e0c92270c3a0f3bb7aa8c818e4e4d8 /nova/cloudpipe
parent7e70e5ff7c39862a328b304f13778936e422a212 (diff)
downloadnova-c56d20383a432aa2c83e7e3c2beebdb49cbe9efc.tar.gz
nova-c56d20383a432aa2c83e7e3c2beebdb49cbe9efc.tar.xz
nova-c56d20383a432aa2c83e7e3c2beebdb49cbe9efc.zip
fix syntax error
Diffstat (limited to 'nova/cloudpipe')
-rw-r--r--nova/cloudpipe/pipelib.py2
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