summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pyanaconda/ui/gui/spokes/network.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyanaconda/ui/gui/spokes/network.py b/pyanaconda/ui/gui/spokes/network.py
index 39b320e6a..0767b2e52 100644
--- a/pyanaconda/ui/gui/spokes/network.py
+++ b/pyanaconda/ui/gui/spokes/network.py
@@ -547,8 +547,8 @@ class NetworkControlBox():
title = '<span size="large">%s (%s%s)</span>' % (self._dev_type_str(device),
device.get_iface(),
unplugged)
- title += '\n<span size="small">%s %s</span>' % (device.get_vendor(),
- device.get_product())
+ title += '\n<span size="small">%s %s</span>' % (device.get_vendor() or "",
+ device.get_product() or "")
return title
def _dev_type_str(self, device):