[yum-cvs] yum/yum __init__.py,1.174,1.175
Seth Vidal
skvidal at linux.duke.edu
Thu Jan 12 06:32:29 UTC 2006
- Previous message: [yum-cvs] yum/yum __init__.py, 1.173, 1.174 depsolve.py, 1.76, 1.77 sqlitesack.py, 1.27, 1.28
- Next message: [yum-cvs] yum-utils/docs repo-rss.1, NONE, 1.1 yum-builddep.1, NONE, 1.1 yumdownloader.1, NONE, 1.1 Makefile, 1.2, 1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/groups/yum/cvs/yum/yum
In directory login1.linux.duke.edu:/tmp/cvs-serv31585/yum
Modified Files:
__init__.py
Log Message:
- fix for rh bug 177528 - don't call the repos callback if there are no
repos defined.
- jeremy, look at this and see if it breaks anything in pup or pirut
Index: __init__.py
===================================================================
RCS file: /home/groups/yum/cvs/yum/yum/__init__.py,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -r1.174 -r1.175
--- __init__.py 12 Jan 2006 06:03:20 -0000 1.174
+++ __init__.py 12 Jan 2006 06:32:27 -0000 1.175
@@ -253,8 +253,9 @@
raise
num += 1
- if self.repos.callback:
+ if self.repos.callback and len(repos) > 0:
self.repos.callback.progressbar(num, len(repos), repo.id)
+
self.plugins.run('postreposetup')
def doSackSetup(self, archlist=None, thisrepo=None):
- Previous message: [yum-cvs] yum/yum __init__.py, 1.173, 1.174 depsolve.py, 1.76, 1.77 sqlitesack.py, 1.27, 1.28
- Next message: [yum-cvs] yum-utils/docs repo-rss.1, NONE, 1.1 yum-builddep.1, NONE, 1.1 yumdownloader.1, NONE, 1.1 Makefile, 1.2, 1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Yum-cvs-commits
mailing list