From: Zac Medico Date: Sat, 23 Dec 2006 20:09:57 +0000 (-0000) Subject: For forward compatibility, make metadata_overlay pass any additional positional and... X-Git-Tag: v2.1.2~229 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5cdd59f375042afb60d1e9ed2d1e46746ef31be6;p=portage.git For forward compatibility, make metadata_overlay pass any additional positional and keyword parameters into the super constructor. svn path=/main/trunk/; revision=5368 --- 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