anaconda/bugfix-fix-vender-issue.patch

16 lines
787 B
Diff
Raw Normal View History

2019-12-30 17:03:27 +08:00
diff -urNp a/pyanaconda/ui/gui/spokes/network.py b/pyanaconda/ui/gui/spokes/network.py
2019-12-30 11:37:55 +08:00
--- a/pyanaconda/ui/gui/spokes/network.py 2018-07-25 21:58:20.000000000 +0800
2019-12-30 17:03:27 +08:00
+++ b/pyanaconda/ui/gui/spokes/network.py 2019-12-30 16:58:36.337887175 +0800
@@ -877,9 +877,8 @@ class NetworkControlBox(GObject.GObject)
unplugged)
2019-12-30 11:37:55 +08:00
if dev_cfg.device:
2019-12-30 17:03:27 +08:00
- title += '\n<span size="small">%s %s</span>' % \
2019-12-30 11:37:55 +08:00
- (escape_markup(dev_cfg.device.get_vendor() or ""),
- escape_markup(dev_cfg.device.get_product() or ""))
2019-12-30 17:03:27 +08:00
+ title += '\n<span size="small">%s</span>' % \
2019-12-30 11:37:55 +08:00
+ (escape_markup(dev_cfg.device.get_product() or ""))
return title
def dev_cfg(self, uuid=None, device=None, iface=None):