[yum-cvs] yum cli.py,1.241.2.15,1.241.2.16

Seth Vidal skvidal at linux.duke.edu
Mon Apr 2 18:09:09 UTC 2007


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

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

Patch from Ville Skyttä fixes rh bug: 234807

if you tried to do:
yum install provide-of-something-you-have provide-of-something-you-don't

it would never get the second item, only the first.



Index: cli.py
===================================================================
RCS file: /home/groups/yum/cvs/yum/cli.py,v
retrieving revision 1.241.2.15
retrieving revision 1.241.2.16
diff -u -r1.241.2.15 -r1.241.2.16
--- cli.py	13 Mar 2007 03:22:17 -0000	1.241.2.15
+++ cli.py	2 Apr 2007 18:09:07 -0000	1.241.2.16
@@ -566,7 +566,7 @@
                     self.verbose_logger.log(yum.logginglevels.DEBUG_3,
                         'Requested dep: %s is provided by installed package', str(arg))
                     
-                    break # we don't need to look, we have it
+                    continue # we don't need to look, we have it
                 try:
                     mypkgs = self.returnPackagesByDep(arg)
                 except yum.Errors.YumBaseError, e:




More information about the Yum-cvs-commits mailing list