Use yum's built in exclude handling

This commit is contained in:
Jesse Keating 2007-03-15 13:29:57 -04:00 committed by Jesse Keating
parent e2c43c0a93
commit 938113eebe
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,6 @@
* Thu Mar 15 2007 Jesse Keating <jkeating@redhat.com>
- Use yum's built in exclude handling
* Tue Mar 14 2007 Jesse Keating <jkeating@redhat.com>
- Do things faster/smarter if we've only asked for one disc

View File

@ -218,9 +218,8 @@ class Gather(yum.YumBase):
searchlist.extend(addlist)
# Remove the excludes
for exclude in excludelist:
for x in range(searchlist.count(exclude)): # why is there no list.removeall?
searchlist.remove(exclude)
self.conf.exclude.extend(excludelist)
self.excludePackages()
# Make the search list unique
searchlist = yum.misc.unique(searchlist)