[yum-cvs] yum output.py,1.62,1.63
Seth Vidal
skvidal at login.linux.duke.edu
Sat Dec 3 17:12:41 UTC 2005
Update of /home/groups/yum/cvs/yum
In directory login:/tmp/cvs-serv31681
Modified Files:
output.py
Log Message:
kill off sortPkgObj() from __init__
remove excludeNonCompatArch as it was trivial and useless
Index: output.py
===================================================================
RCS file: /home/groups/yum/cvs/yum/output.py,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- output.py 25 Oct 2005 15:42:14 -0000 1.62
+++ output.py 3 Dec 2005 17:12:39 -0000 1.63
@@ -24,6 +24,7 @@
from i18n import _
from urlgrabber.progress import TextMeter
+from yum.misc import sortPkgObj
try:
import readline
@@ -93,7 +94,7 @@
if len(lst) > 0:
thingslisted = 1
print '%s' % description
- lst.sort(self.sortPkgObj)
+ lst.sort(sortPkgObj)
for pkg in lst:
if outputType == 'list':
self.simpleList(pkg)
More information about the Yum-cvs-commits
mailing list