diff options
| author | Thierry Carrez <thierry@openstack.org> | 2011-03-16 10:38:48 +0100 |
|---|---|---|
| committer | Thierry Carrez <thierry@openstack.org> | 2011-03-16 10:38:48 +0100 |
| commit | 016669543a1f6d4ffc281637ba98c6b6fe30be82 (patch) | |
| tree | 1d0123a4f04c292869d3f3ed83917af10ecdcf9c | |
| parent | d36b4d5f3797521b1c2d13a0d30fe98a0671768e (diff) | |
| download | nova-016669543a1f6d4ffc281637ba98c6b6fe30be82.tar.gz nova-016669543a1f6d4ffc281637ba98c6b6fe30be82.tar.xz nova-016669543a1f6d4ffc281637ba98c6b6fe30be82.zip | |
Fix unknown exception error in euca-get-ajax-console
| -rw-r--r-- | nova/virt/libvirt_conn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/virt/libvirt_conn.py b/nova/virt/libvirt_conn.py index 7994e9547..d7bdc3faa 100644 --- a/nova/virt/libvirt_conn.py +++ b/nova/virt/libvirt_conn.py @@ -502,7 +502,7 @@ class LibvirtConnection(object): cmd = 'netcat', '0.0.0.0', port, '-w', '1' try: stdout, stderr = utils.execute(*cmd, process_input='') - except ProcessExecutionError: + except exception.ProcessExecutionError: return port raise Exception(_('Unable to find an open port')) |
