summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2018-01-20 17:25:40 -0500
committerCole Robinson <crobinso@redhat.com>2018-01-21 14:42:44 -0500
commit94e4e8bf5a47c964a90fdbba056c6d47ca79307b (patch)
tree8cb2da44cfb422645e88af8c7c34a331d9227f74
parentc68cd7bb005ba66a0987d2182801440dacd509bd (diff)
downloadvirt-manager-94e4e8bf5a47c964a90fdbba056c6d47ca79307b.tar.gz
details: Tweak sound hwlist entry to be consistent with others
Dropping the colon
-rw-r--r--virtManager/details.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/virtManager/details.py b/virtManager/details.py
index ae5c1d81..23bb7423 100644
--- a/virtManager/details.py
+++ b/virtManager/details.py
@@ -228,7 +228,7 @@ def _label_for_device(dev):
if devtype == "hostdev":
return dev.pretty_name()
if devtype == "sound":
- return _("Sound: %s") % dev.model
+ return _("Sound %s") % dev.model
if devtype == "video":
return _("Video %s") % dev.pretty_model(dev.model)
if devtype == "filesystem":