From be6b9f976bd6911a9052337e89a8ebbc67e3a85a Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Thu, 1 Feb 2007 22:28:08 +0000 Subject: grp is a string, not an object. --- yuminstall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yuminstall.py') 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) -- cgit