summaryrefslogtreecommitdiffstats
path: root/iw/GroupSelector.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-03-14 15:40:57 -0400
committerChris Lumens <clumens@redhat.com>2008-03-14 15:40:57 -0400
commit4ce7fadb86523cda81c2dc4cb792f751a1dbedef (patch)
treef7afd1da99d385d2cf4479be8a7500b98c1ed2f8 /iw/GroupSelector.py
parent69f1f0b2b2fc0f80a4c177c1bdbef2138330db44 (diff)
downloadanaconda-4ce7fadb86523cda81c2dc4cb792f751a1dbedef.tar.gz
anaconda-4ce7fadb86523cda81c2dc4cb792f751a1dbedef.tar.xz
anaconda-4ce7fadb86523cda81c2dc4cb792f751a1dbedef.zip
Don't show the epoch in package selection either (#437502).
Diffstat (limited to 'iw/GroupSelector.py')
-rw-r--r--iw/GroupSelector.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/iw/GroupSelector.py b/iw/GroupSelector.py
index e057345fb..1fc8bb9f6 100644
--- a/iw/GroupSelector.py
+++ b/iw/GroupSelector.py
@@ -71,7 +71,8 @@ def sanitizeString(s, translate = True):
# given a package object, spit out a string reasonable for the list widgets
def listEntryString(po):
desc = po.returnSimple('summary') or ''
- desc = "<b>%s</b> - %s" %(po, sanitizeString(desc))
+ pkgStr = "%s-%s-%s.%s" % (po.name, po.version, po.release, po.name)
+ desc = "<b>%s</b> - %s" %(pkgStr, sanitizeString(desc))
return desc
GLADE_FILE = "GroupSelector.glade"