summaryrefslogtreecommitdiffstats
path: root/bin/quickpkg
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-09-21 11:49:13 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-09-21 11:49:13 +0000
commitdbe76c6a138288980772d9b4a42280903df2daa9 (patch)
tree72e9cf2b33968aea863dd5fd08eb0098ab2eb089 /bin/quickpkg
parente331119e79505f7e1ccded7c3d81fe612d60cb3d (diff)
downloadportage-dbe76c6a138288980772d9b4a42280903df2daa9.tar.gz
portage-dbe76c6a138288980772d9b4a42280903df2daa9.tar.bz2
portage-dbe76c6a138288980772d9b4a42280903df2daa9.zip
Use filter() and zip() instead of itertools.ifilter() and itertools.izip() for compatibility with Python 3.
(2to3-3.1 -f itertools -f itertools_imports -nw ${FILES}) svn path=/main/trunk/; revision=14314
Diffstat (limited to 'bin/quickpkg')
-rwxr-xr-xbin/quickpkg3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/quickpkg b/bin/quickpkg
index f885fff05..fd1728570 100755
--- a/bin/quickpkg
+++ b/bin/quickpkg
@@ -8,7 +8,6 @@ from __future__ import print_function
import errno
import signal
import sys
-from itertools import izip
try:
import portage
@@ -118,7 +117,7 @@ def quickpkg_main(options, args, eout):
return False
excluded_config_files.append(filename)
return True
- existing_metadata = dict(izip(fix_metadata_keys,
+ existing_metadata = dict(zip(fix_metadata_keys,
vardb.aux_get(cpv, fix_metadata_keys)))
category, pf = portage.catsplit(cpv)
required_metadata = {}