diff options
| author | Masanori Itoh <itoumsn@nttdata.co.jp> | 2011-03-03 00:28:04 +0900 |
|---|---|---|
| committer | Masanori Itoh <itoumsn@nttdata.co.jp> | 2011-03-03 00:28:04 +0900 |
| commit | f617fc087367a3d65bd4b826bf735f65fec9d2fd (patch) | |
| tree | a50278023295e148c1c4b48d2d3c249b39c77377 | |
| parent | bb7c1b8c63632c789ed0cd3785a22b7baa90fd83 (diff) | |
| download | nova-f617fc087367a3d65bd4b826bf735f65fec9d2fd.tar.gz nova-f617fc087367a3d65bd4b826bf735f65fec9d2fd.tar.xz nova-f617fc087367a3d65bd4b826bf735f65fec9d2fd.zip | |
Change DescribeKeyPairs response tag from keypairsSet to keySet, and fix lp720133.
| -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 844ccbe5e..c6309f03c 100644 --- a/nova/api/ec2/cloud.py +++ b/nova/api/ec2/cloud.py @@ -298,7 +298,7 @@ class CloudController(object): 'keyFingerprint': key_pair['fingerprint'], }) - return {'keypairsSet': result} + return {'keySet': result} def create_key_pair(self, context, key_name, **kwargs): LOG.audit(_("Create key pair %s"), key_name, context=context) |
