diff options
| author | Anthony Young <sleepsonthefloor@gmail.com> | 2011-03-29 14:53:38 -0700 |
|---|---|---|
| committer | Anthony Young <sleepsonthefloor@gmail.com> | 2011-03-29 14:53:38 -0700 |
| commit | f5c072de1edddc4ddab89be8146a81d361397c45 (patch) | |
| tree | 3d59e13cb6bffea942393670432e2857ecb21a72 /nova/api | |
| parent | 8cdad1ab8343eb038f119a92e28d77c731b61793 (diff) | |
incorporate feedback from termie
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/servers.py | 2 |
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() |
