aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pomu/util/remote.py')
-rw-r--r--pomu/util/remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pomu/util/remote.py b/pomu/util/remote.py
index c0c6554..b1ce78a 100644
--- a/pomu/util/remote.py
+++ b/pomu/util/remote.py
@@ -31,7 +31,7 @@ def get_full_cpv(cpvs, name, category=None, version=None):
cpvl = filter(lambda x: x[1] == name and (not category or x[0] == category), cpvs)
if not cpvl: return Result.Err()
if version:
- cpvl = cpvl.filter(lambda x: x[2] == version)[:1]
+ cpvl = list(filter(lambda x: x[2] == version, cpvl))[:1]
b = best(list('{}/{}-{}'.format(c, n, v) for c, n, v in cpvl))
if b:
cat, name, v, s, r = cpv_split(b)