From c8ed6534e5c6cfe687c7881c42633af3d1c4d1a1 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Sat, 29 Aug 2020 11:53:19 -0400 Subject: [PATCH] connection: Remove some outdated pretty hv labels And also the embedded label, our default behavior covers this well enough for what is likely to be an obscure case Signed-off-by: Cole Robinson --- virtManager/connection.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/virtManager/connection.py b/virtManager/connection.py index f9edd1c8e..82717dc16 100644 --- a/virtManager/connection.py +++ b/virtManager/connection.py @@ -377,18 +377,12 @@ class vmmConnection(vmmGObject): pretty_map = { "esx": "ESX", - "gsx": "GSX", - "libxl": "libxl", "lxc": "LXC", "openvz": "OpenVZ", - "phyp": "phyp", "qemu": "QEMU/KVM", - "test": "test", - "uml": "UML", - "vbox": "VBox", + "vbox": "Virtualbox", "vmware": "VMWare", "xen": "Xen", - "xenapi": "XenAPI", } hv = pretty_map.get(self.get_driver(), self.get_driver()) @@ -399,8 +393,6 @@ class vmmConnection(vmmGObject): if path == "/session": ret += " " + _("User session") - elif path == "/embed": - ret += " " + _("Embedded session") elif (path and path != "/system" and os.path.basename(path)): # Used by test URIs to report what XML file they are using ret += " %s" % os.path.basename(path)