From 2c99efa7c3532e91e96defe3517540bb54dfef02 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 30 Mar 2012 00:24:53 +0200 Subject: [PATCH] Fix metadata generation when mastering a repository. --- python/pakfire/repository/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pakfire/repository/local.py b/python/pakfire/repository/local.py index 5ebced887..c6f9128a4 100644 --- a/python/pakfire/repository/local.py +++ b/python/pakfire/repository/local.py @@ -235,7 +235,7 @@ class RepositoryDir(base.RepositoryFactory): shutil.move(db_path, db_path2) # Create a new metadata object and add out information to it. - md = metadata.Metadata(self.pakfire, self) + md = metadata.Metadata(self.pakfire) # Save name of the hashed database to the metadata. md.database = os.path.basename(db_path2) -- 2.39.5