summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-09-21 17:46:21 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-09-21 17:46:21 +0000
commit7f5f872e46f65b9422ae2805c15200a74edecabc (patch)
treed13b017e72946934f6c9afc213457e6777349a03 /pym
parentcdd7a8350d5ad23c49c916399dfaace2cd4ab99a (diff)
downloadportage-7f5f872e46f65b9422ae2805c15200a74edecabc.tar.gz
portage-7f5f872e46f65b9422ae2805c15200a74edecabc.tar.bz2
portage-7f5f872e46f65b9422ae2805c15200a74edecabc.zip
'filtered_auxdbkeys' should be a list to allow sorting.
svn path=/main/trunk/; revision=14347
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/dbapi/porttree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py
index f0950ce95..40557de15 100644
--- a/pym/portage/dbapi/porttree.py
+++ b/pym/portage/dbapi/porttree.py
@@ -340,7 +340,7 @@ class portdbapi(dbapi):
# XXX: REMOVE THIS ONCE UNUSED_0 IS YANKED FROM auxdbkeys
# ~harring
- filtered_auxdbkeys = filter(lambda x: not x.startswith("UNUSED_0"), auxdbkeys)
+ filtered_auxdbkeys = list(filter(lambda x: not x.startswith("UNUSED_0"), auxdbkeys))
filtered_auxdbkeys.sort()
from portage.cache import metadata_overlay, volatile
if not depcachedir_w_ok: