This commit is contained in:
zhangrui 2019-12-30 11:37:55 +08:00
parent 6f84d3a408
commit 28e422dc1d
2 changed files with 21 additions and 1 deletions

View File

@ -3,7 +3,7 @@
Name: anaconda
Version: 29.24.7
Release: 14
Release: 15
Summary: Graphical system installer
License: GPLv2+ and MIT
URL: https://fedoraproject.org/wiki/Anaconda
@ -37,6 +37,7 @@ Patch9019: anaconda-change-topbar-background-size.patch
Patch9020: anaconda-hide-help-button.patch
Patch9021: anaconda-add-quiet-cmdline-args-for-x86.patch
Patch9022: anaconda-modify-interface-is-extended-in-Chinese-mod.patch
Patch9023: bugfix-fix-vender-issue.patch
BuildRequires: audit-libs-devel libtool gettext-devel >= 0.19.8 gtk3-devel >= 3.22.17
BuildRequires: gtk-doc gtk3-devel-docs >= 3.22.17 glib2-doc gobject-introspection-devel
@ -209,6 +210,12 @@ update-desktop-database &> /dev/null || :
%{_datadir}/gtk-doc
%changelog
* Mon Dec 30 2019 openEuler Buildteam <buildteam@openeuler.org> - 29.24.7-15
- Type:bugfix
- ID:NA
- SUG:NA
- DESC:fix bug
* Mon Dec 23 2019 openEuler Buildteam <buildteam@openeuler.org> - 29.24.7-14
- Type:bugfix
- ID:NA

View File

@ -0,0 +1,13 @@
diff -uNrp 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 11:17:45.001615749 +0800
@@ -878,8 +878,7 @@ class NetworkControlBox(GObject.GObject)
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 ""))
+ (escape_markup(dev_cfg.device.get_product() or ""))
return title
def dev_cfg(self, uuid=None, device=None, iface=None):