From 5cdd59f375042afb60d1e9ed2d1e46746ef31be6 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 23 Dec 2006 20:09:57 +0000 Subject: For forward compatibility, make metadata_overlay pass any additional positional and keyword parameters into the super constructor. svn path=/main/trunk/; revision=5368 --- pym/cache/metadata_overlay.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'pym/cache') diff --git a/pym/cache/metadata_overlay.py b/pym/cache/metadata_overlay.py index 914285b3d..d82ba96f8 100644 --- a/pym/cache/metadata_overlay.py +++ b/pym/cache/metadata_overlay.py @@ -15,8 +15,11 @@ class database(template.database): serialize_eclasses = False def __init__(self, location, label, auxdbkeys, db_rw=db_rw, db_ro=db_ro, - **config): - super(database, self).__init__(location, label, auxdbkeys) + *args, **config): + super_config = config.copy() + super_config.pop("gid", None) + super(database, self).__init__(location, label, auxdbkeys, + *args, **super_config) self.db_rw = db_rw(location, label, auxdbkeys, **config) self.commit = self.db_rw.commit self.autocommits = self.db_rw.autocommits -- cgit v1.2.3-1-g7c22