summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-07-23 20:23:22 +0000
committerZac Medico <zmedico@gentoo.org>2008-07-23 20:23:22 +0000
commit094b064e5d5fcb933cc83dadd2059a2c16768fd2 (patch)
tree5f8a5b1ee1b1311ef27b1acbb20174258b1d2cf9
parent272d376814d2089100e955cea823ab6a4e9087c1 (diff)
downloadportage-094b064e5d5fcb933cc83dadd2059a2c16768fd2.tar.gz
portage-094b064e5d5fcb933cc83dadd2059a2c16768fd2.tar.bz2
portage-094b064e5d5fcb933cc83dadd2059a2c16768fd2.zip
Fix typo, found by pyflakes.
svn path=/main/trunk/; revision=11178
-rwxr-xr-xbin/portageq2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/portageq b/bin/portageq
index 117549fcb..be7f51a88 100755
--- a/bin/portageq
+++ b/bin/portageq
@@ -383,7 +383,7 @@ def get_repo_path(argv):
if len(argv) < 2:
print "ERROR: insufficient parameters!"
sys.exit(2)
- for arg in arvg[1:]:
+ for arg in argv[1:]:
print portage.db[argv[0]]["porttree"].dbapi.getRepositoryPath(argv[1])
def list_preserved_libs(argv):