[yum-cvs] yum/yum packageSack.py,1.24,1.25

James Bowes jbowes at linux.duke.edu
Sun Jan 28 20:05:38 UTC 2007


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

Modified Files:
	packageSack.py 
Log Message:
Replace another use of 'with' with mdtype

Index: packageSack.py
===================================================================
RCS file: /home/groups/yum/cvs/yum/yum/packageSack.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- packageSack.py	21 Jan 2007 20:13:54 -0000	1.24
+++ packageSack.py	28 Jan 2007 20:05:36 -0000	1.25
@@ -37,7 +37,7 @@
     def setCompatArchs(self, compatArchs):
         raise NotImplementedError()
 
-    def populate(self, repo, with, callback, cacheOnly):
+    def populate(self, repo, mdtype, callback, cacheOnly):
         raise NotImplementedError()
 
     def packagesByTuple(self, pkgtup):
@@ -213,8 +213,8 @@
         # Make sure the new sack follows the same rules we have been given.
         sack.setCompatArchs(self.compatarchs)
 
-    def populate(self, repo, with, callback, cacheOnly):
-        self.sacks[repo.id].populate(repo, with, callback, cacheOnly)
+    def populate(self, repo, mdtype, callback, cacheOnly):
+        self.sacks[repo.id].populate(repo, mdtype, callback, cacheOnly)
 
     def setCompatArchs(self, compatArchs):
         for sack in self.sacks.values():




More information about the Yum-cvs-commits mailing list