[yum-cvs] yum cli.py,1.191,1.192

Seth Vidal skvidal at login.linux.duke.edu
Tue Oct 25 15:07:02 UTC 2005


Update of /home/groups/yum/cvs/yum
In directory login:/tmp/cvs-serv20603

Modified Files:
	cli.py 
Log Message:

make grouplist work.


Index: cli.py
===================================================================
RCS file: /home/groups/yum/cvs/yum/cli.py,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -r1.191 -r1.192
--- cli.py	25 Oct 2005 12:28:44 -0000	1.191
+++ cli.py	25 Oct 2005 15:07:00 -0000	1.192
@@ -1310,12 +1310,12 @@
         if len(installed) > 0:
             self.log(2, 'Installed Groups:')
             for group in installed:
-                self.log(2, '   %s' % group)
+                self.log(2, '   %s' % group.name)
         
         if len(available) > 0:
             self.log(2, 'Available Groups:')
             for group in available:
-                self.log(2, '   %s' % group)
+                self.log(2, '   %s' % group.name)
 
             
         return 0, ['Done']




More information about the Yum-cvs-commits mailing list