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