diff options
| author | Rick Harris <rick.harris@rackspace.com> | 2010-12-27 15:42:30 -0600 |
|---|---|---|
| committer | Rick Harris <rick.harris@rackspace.com> | 2010-12-27 15:42:30 -0600 |
| commit | 8d522838ace090a7325d930df08c37f1e9d9803e (patch) | |
| tree | 5c7085bf97c2d958c8077a8f86f29d61ea79e6b0 /nova/api | |
| parent | 748aa8089eabfd15425199c2318079e9bf84578f (diff) | |
| download | nova-8d522838ace090a7325d930df08c37f1e9d9803e.tar.gz nova-8d522838ace090a7325d930df08c37f1e9d9803e.tar.xz nova-8d522838ace090a7325d930df08c37f1e9d9803e.zip | |
Fixing snapshots, pep8 fixes
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/images.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/images.py b/nova/api/openstack/images.py index 8a6772fa5..3a95e3961 100644 --- a/nova/api/openstack/images.py +++ b/nova/api/openstack/images.py @@ -71,7 +71,7 @@ class Controller(wsgi.Controller): ctxt = req.environ['nova.context'] env = self._deserialize(req.body, req) data = {'instance_id': env["image"]["serverId"], - 'name': env["image"]["name"] } + 'name': env["image"]["name"]} return dict(image=self._service.create(ctxt, data)) def update(self, req, id): |
