[yum-cvs] yum cli.py,1.241.2.13,1.241.2.14

Seth Vidal skvidal at linux.duke.edu
Wed Mar 7 20:17:34 UTC 2007


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

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

fix for change in matchPackageNames() to meet up with dlutter's patch


Index: cli.py
===================================================================
RCS file: /home/groups/yum/cvs/yum/cli.py,v
retrieving revision 1.241.2.13
retrieving revision 1.241.2.14
diff -u -r1.241.2.13 -r1.241.2.14
--- cli.py	3 Feb 2007 21:33:40 -0000	1.241.2.13
+++ cli.py	7 Mar 2007 20:17:32 -0000	1.241.2.14
@@ -935,8 +935,8 @@
         
         for arg in args:
             pkgs = []
-            pogen = self.pkgSack.matchPackageNames(arg)
-            for po in pogen:
+            ematch, match, umatch = self.pkgSack.matchPackageNames([arg])
+            for po in ematch + match:
                 pkgs.append(po)
                 
             results = self.findDeps(pkgs)




More information about the Yum-cvs-commits mailing list