mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-11 05:17:59 +03:00
Fixed exception print out & removed bogus statement
This commit is contained in:
parent
4470b01559
commit
8aa6ea7a3c
@ -196,7 +196,7 @@ class vmmConsole(gobject.GObject):
|
||||
else:
|
||||
self.try_login()
|
||||
except:
|
||||
print "Couldn't open console " + str(sys.exc_info())
|
||||
print "Couldn't open console " + str(sys.exc_info()[0]) + " " + str(sys.exc_info()[1])
|
||||
self.ignorePause = False
|
||||
self.ignorePause = False
|
||||
|
||||
|
@ -234,7 +234,6 @@ class vmmDomain(gobject.GObject):
|
||||
# XXX don't hardcode me! need to really extract info from
|
||||
# the libvirt XML as & when the display device info gets
|
||||
# added
|
||||
prin
|
||||
return ["vnc", "localhost", 5900 + self.get_id()]
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user