[yum-cvs] yum/yum sqlitesack.py,1.2,1.3

Gijs Hollestelle gijs at login.linux.duke.edu
Sun Feb 27 22:34:41 UTC 2005


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

Modified Files:
	sqlitesack.py 
Log Message:
Fixing a bug in the sqlite exclude code that can lead to tracebacks



Index: sqlitesack.py
===================================================================
RCS file: /home/groups/yum/cvs/yum/yum/sqlitesack.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sqlitesack.py	26 Feb 2005 13:15:56 -0000	1.2
+++ sqlitesack.py	27 Feb 2005 22:34:39 -0000	1.3
@@ -276,7 +276,7 @@
             for x in cur.fetchall():
                 if (self.excludes[rep].has_key(x.pkgId)):
                     continue                    
-                allpkg.append = self.pc(self.db2class(x,True),rep) 
+                allpkg.append(self.pc(self.db2class(x,True),rep))
         # Now find the newest one
         newest = allpkg.pop()
         for pkg in allpkg:




More information about the Yum-cvs-commits mailing list