diff options
| author | Jenkins <jenkins@review.openstack.org> | 2011-10-01 17:49:03 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2011-10-01 17:49:03 +0000 |
| commit | 3837f09ee0b7b0da23e1caa185f58610d30bffe6 (patch) | |
| tree | 6f83d0b8a27516d2846b57c2fed34e5a8cffa9c7 /nova/api | |
| parent | 04548b067c7c79602332fe2bc2dc89ed77cee7ac (diff) | |
| parent | 7a10619a4c1f5a1880ab613f782b4cbe1d57fad4 (diff) | |
| download | nova-3837f09ee0b7b0da23e1caa185f58610d30bffe6.tar.gz nova-3837f09ee0b7b0da23e1caa185f58610d30bffe6.tar.xz nova-3837f09ee0b7b0da23e1caa185f58610d30bffe6.zip | |
Merge "Fixes bug 862633 -- OS api consoles create() broken"
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/consoles.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/consoles.py b/nova/api/openstack/consoles.py index d2655acfa..8f6dbaadf 100644 --- a/nova/api/openstack/consoles.py +++ b/nova/api/openstack/consoles.py @@ -57,7 +57,7 @@ class Controller(object): return dict(consoles=[_translate_keys(console) for console in consoles]) - def create(self, req, server_id, body): + def create(self, req, server_id): """Creates a new console""" self.console_api.create_console( req.environ['nova.context'], |
