From ac953cfae4d3f5d750c11114c96971030d14d536 Mon Sep 17 00:00:00 2001 From: "jkeating@localhost.localdomain" <> Date: Mon, 16 Oct 2006 23:11:58 -0400 Subject: [PATCH] Clean the metadata out when creating the object --- gather/gather.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gather/gather.py b/gather/gather.py index c3736e28..425f42f0 100755 --- a/gather/gather.py +++ b/gather/gather.py @@ -21,6 +21,7 @@ class Gather(yum.YumBase): # Create a yum object to use yum.YumBase.__init__(self) self.doConfigSetup(fn=opts.yumconf) + self.cleanMetadata() # clean metadata that might be in the cache from previous runs self.doRepoSetup() arches = yum.rpmUtils.arch.getArchList(opts.arch) self.doSackSetup(arches)