summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorAnthony Young <sleepsonthefloor@gmail.com>2011-03-29 14:53:38 -0700
committerAnthony Young <sleepsonthefloor@gmail.com>2011-03-29 14:53:38 -0700
commitf5c072de1edddc4ddab89be8146a81d361397c45 (patch)
tree3d59e13cb6bffea942393670432e2857ecb21a72 /nova/api
parent8cdad1ab8343eb038f119a92e28d77c731b61793 (diff)
incorporate feedback from termie
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/servers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/servers.py b/nova/api/openstack/servers.py
index 822342149..8170ab4a1 100644
--- a/nova/api/openstack/servers.py
+++ b/nova/api/openstack/servers.py
@@ -486,7 +486,7 @@ class Controller(wsgi.Controller):
"""Returns a url to an instance's ajaxterm console."""
try:
self.compute_api.get_vnc_console(req.environ['nova.context'],
- int(id))
+ int(id))
except exception.NotFound:
return faults.Fault(exc.HTTPNotFound())
return exc.HTTPAccepted()