d6fa6bfd07
467808) Don't add multiple sound devices if install fails Only popup volume path copy option on right click Fix a variable typo
20 lines
831 B
Diff
20 lines
831 B
Diff
# HG changeset patch
|
|
# User "Cole Robinson <crobinso@redhat.com>"
|
|
# Date 1224534507 14400
|
|
# Node ID 57f3422417b38bb6c4d834283f7bd85c368fccf0
|
|
# Parent fd4db4f02a84dadce38293214fc04721c1a8cc15
|
|
Fix variable typo.
|
|
|
|
diff -r fd4db4f02a84 -r 57f3422417b3 src/virtManager/manager.py
|
|
--- a/src/virtManager/manager.py Mon Oct 20 10:49:21 2008 -0400
|
|
+++ b/src/virtManager/manager.py Mon Oct 20 16:28:27 2008 -0400
|
|
@@ -430,7 +430,7 @@
|
|
(gtype, host, port, transport, username) = vm.get_graphics_console()
|
|
if gtype == "vnc":
|
|
self.emit("action-show-console", uri, vmuuid)
|
|
- elif not connect.is_remote():
|
|
+ elif not connection.is_remote():
|
|
self.emit("action-show-terminal", uri, vmuuid)
|
|
else:
|
|
self.emit("action-refresh-console", uri, vmuuid)
|