diff options
| author | Ed Leafe <ed@leafe.com> | 2011-01-07 15:56:32 -0600 |
|---|---|---|
| committer | Ed Leafe <ed@leafe.com> | 2011-01-07 15:56:32 -0600 |
| commit | a0ec77b597713fd9a4be5bb7b892eba4ac53e625 (patch) | |
| tree | b494d217309af24b2f521c70095b8491409fb87b /nova | |
| parent | 18b8d8307d0fc008f62dd8eeeedb351a954a3471 (diff) | |
| download | nova-a0ec77b597713fd9a4be5bb7b892eba4ac53e625.tar.gz nova-a0ec77b597713fd9a4be5bb7b892eba4ac53e625.tar.xz nova-a0ec77b597713fd9a4be5bb7b892eba4ac53e625.zip | |
Reverted formatting change no longer necessary
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/api/openstack/servers.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nova/api/openstack/servers.py b/nova/api/openstack/servers.py index d8a7ca161..764c843ac 100644 --- a/nova/api/openstack/servers.py +++ b/nova/api/openstack/servers.py @@ -104,8 +104,7 @@ class Controller(wsgi.Controller): def show(self, req, id): """ Returns server details by server id """ try: - instance = self.compute_api.get( - req.environ['nova.context'], id) + instance = self.compute_api.get(req.environ['nova.context'], id) return _translate_detail_keys(instance) except exception.NotFound: return faults.Fault(exc.HTTPNotFound()) |
