projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
34b54ba
)
cache.volatile: discard "perms" param
author
Zac Medico
<zmedico@gentoo.org>
Thu, 12 May 2011 18:58:27 +0000
(11:58 -0700)
committer
Zac Medico
<zmedico@gentoo.org>
Thu, 12 May 2011 18:58:27 +0000
(11:58 -0700)
pym/portage/cache/volatile.py
patch
|
blob
|
history
diff --git
a/pym/portage/cache/volatile.py
b/pym/portage/cache/volatile.py
index e671904eec1c69f9bd48d955cdce343014d1706d..0bf6bab2c7f41b40f250568e2481ded87a9ea163 100644
(file)
--- a/
pym/portage/cache/volatile.py
+++ b/
pym/portage/cache/volatile.py
@@
-1,4
+1,4
@@
-# Copyright 1999-20
09
Gentoo Foundation
+# Copyright 1999-20
11
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__