From 94e4e8bf5a47c964a90fdbba056c6d47ca79307b Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Sat, 20 Jan 2018 17:25:40 -0500 Subject: [PATCH] details: Tweak sound hwlist entry to be consistent with others Dropping the colon --- virtManager/details.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtManager/details.py b/virtManager/details.py index ae5c1d81f..23bb7423d 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":