diff options
| author | Michael Gundlach <michael.gundlach@rackspace.com> | 2010-09-22 17:35:02 -0400 |
|---|---|---|
| committer | Michael Gundlach <michael.gundlach@rackspace.com> | 2010-09-22 17:35:02 -0400 |
| commit | 6f82d0f84c9474e72ef70c9ff568d68031191e0a (patch) | |
| tree | 60c7cced0541184ab265912802722b7580541548 /nova/api | |
| parent | b82a9e3d3ca46e69a1583dea51a474456b867e6f (diff) | |
Soren's patch to fix part of ec2
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/ec2/apirequest.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/nova/api/ec2/apirequest.py b/nova/api/ec2/apirequest.py index a3b20118f..a87c21fb3 100644 --- a/nova/api/ec2/apirequest.py +++ b/nova/api/ec2/apirequest.py @@ -68,10 +68,8 @@ class APIRequest(object): key = _camelcase_to_underscore(parts[0]) if len(parts) > 1: d = args.get(key, {}) - d[parts[1]] = value[0] + d[parts[1]] = value value = d - else: - value = value[0] args[key] = value for key in args.keys(): |
