[yum-cvs] yum/yum packages.py,1.88,1.89

Panu Matilainen pmatilai at linux.duke.edu
Tue Feb 13 20:00:02 UTC 2007


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

Modified Files:
	packages.py 
Log Message:
- return changelog data from rpm headers in the same (date, author, message)
  order as elsewhere (rhbz#221166)


Index: packages.py
===================================================================
RCS file: /home/groups/yum/cvs/yum/yum/packages.py,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- packages.py	12 Feb 2007 22:16:53 -0000	1.88
+++ packages.py	13 Feb 2007 20:00:00 -0000	1.89
@@ -717,8 +717,8 @@
         # then create a _loadChangelog() method to put them into the 
         # self._changelog attr
         if len(self.hdr['changelogname']) > 0:
-            return zip(self.hdr['changelogname'],
-                       self.hdr['changelogtime'],
+            return zip(self.hdr['changelogtime'],
+                       self.hdr['changelogname'],
                        self.hdr['changelogtext'])
         return []
 




More information about the Yum-cvs-commits mailing list