summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-10-22 10:20:16 +0000
committerZac Medico <zmedico@gentoo.org>2006-10-22 10:20:16 +0000
commit911aca34fc3e094e3bfcdecd7e1548290678c2e1 (patch)
tree88002c913796fb7518ce58ef285d99c46d317987 /pym
parent6d7fefc073c6182ff3734ee8ec0a2e528e1cc6ef (diff)
downloadportage-911aca34fc3e094e3bfcdecd7e1548290678c2e1.tar.gz
portage-911aca34fc3e094e3bfcdecd7e1548290678c2e1.tar.bz2
portage-911aca34fc3e094e3bfcdecd7e1548290678c2e1.zip
s/str_matches/acceptable_licenses/ typo
svn path=/main/trunk/; revision=4793
Diffstat (limited to 'pym')
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 1b936e2c6..a7201139e 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -3953,7 +3953,7 @@ def getmaskingstatus(mycpv, settings=None, portdb=None):
def str_matches(myatom):
return myatom in acceptable_licenses
license_req = dep_check(mylicense, None, settings,
- str_matches=acceptable_licenses)[1]
+ str_matches=str_matches)[1]
if license_req:
rValue.append(" ".join(license_req) + " license(s)")