summaryrefslogtreecommitdiffstats
path: root/yuminstall.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-02-01 22:28:08 +0000
committerChris Lumens <clumens@redhat.com>2007-02-01 22:28:08 +0000
commitbe6b9f976bd6911a9052337e89a8ebbc67e3a85a (patch)
treec2b5395a57b76c9e81d63a968f61a44dda394a7f /yuminstall.py
parentb02a793b1bd4d40f7286e88571582b9369174ad9 (diff)
downloadanaconda-be6b9f976bd6911a9052337e89a8ebbc67e3a85a.tar.gz
anaconda-be6b9f976bd6911a9052337e89a8ebbc67e3a85a.tar.xz
anaconda-be6b9f976bd6911a9052337e89a8ebbc67e3a85a.zip
grp is a string, not an object.
Diffstat (limited to 'yuminstall.py')
-rw-r--r--yuminstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yuminstall.py b/yuminstall.py
index 1cb4140c5..0b31cea2b 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -1489,7 +1489,7 @@ class YumBackend(AnacondaBackend):
installed.append(pkg)
for grp in groups:
- f.write("@%s\n" % grp.groupid)
+ f.write("@%s\n" % grp)
for pkg in installed:
f.write("%s\n" % pkg)