[yum-cvs] yum/yum __init__.py,1.259.2.9,1.259.2.10

Seth Vidal skvidal at linux.duke.edu
Wed Jan 3 06:06:46 UTC 2007


Update of /home/groups/yum/cvs/yum/yum
In directory login1.linux.duke.edu:/tmp/cvs-serv5356/yum

Modified Files:
      Tag: yum-3_0_X
	__init__.py 
Log Message:

thanks to terje rosten for pointing out this bug - fixes a dumb list of
lists thing from the ListPackageSacks - makes groupinstall work



Index: __init__.py
===================================================================
RCS file: /home/groups/yum/cvs/yum/yum/__init__.py,v
retrieving revision 1.259.2.9
retrieving revision 1.259.2.10
diff -u -r1.259.2.9 -r1.259.2.10
--- __init__.py	31 Dec 2006 20:35:59 -0000	1.259.2.9
+++ __init__.py	3 Jan 2007 06:06:44 -0000	1.259.2.10
@@ -1723,9 +1723,7 @@
                 del(pkgSack)
 
                 lst = []
-                for pkg in pkgs:
-                    lst.extend(self.bestPackagesFromList(pkg))
-
+                lst.extend(self.bestPackagesFromList(pkgs))
                 pkgs = lst
 
         if len(pkgs) == 0:




More information about the Yum-cvs-commits mailing list