From: Zac Medico Date: Sun, 22 Oct 2006 10:20:16 +0000 (-0000) Subject: s/str_matches/acceptable_licenses/ typo X-Git-Tag: v2.1.2~571 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=911aca34fc3e094e3bfcdecd7e1548290678c2e1;p=portage.git s/str_matches/acceptable_licenses/ typo svn path=/main/trunk/; revision=4793 --- 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)")