cache.volatile: discard "perms" param
authorZac Medico <zmedico@gentoo.org>
Thu, 12 May 2011 18:58:27 +0000 (11:58 -0700)
committerZac Medico <zmedico@gentoo.org>
Thu, 12 May 2011 18:58:27 +0000 (11:58 -0700)
pym/portage/cache/volatile.py

index e671904eec1c69f9bd48d955cdce343014d1706d..0bf6bab2c7f41b40f250568e2481ded87a9ea163 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 import copy
@@ -11,6 +11,7 @@ class database(template.database):
 
        def __init__(self, *args, **config):
                config.pop("gid", None)
+               config.pop("perms", None)
                super(database, self).__init__(*args, **config)
                self._data = {}
                self.__iter__ = self._data.__iter__