diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-11-29 22:16:32 -0800 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-12-03 22:27:39 -0800 |
commit | 3fe5d7b8a219ade11593849597f60824fa739c36 (patch) | |
tree | e6536879e771123ada07eb8d0d65ee7105b7d5bc | |
parent | 9f956ff67ba07c837b13e6f82eddc2165e1b747e (diff) | |
download | portage-3fe5d7b8a219ade11593849597f60824fa739c36.tar.gz portage-3fe5d7b8a219ade11593849597f60824fa739c36.tar.bz2 portage-3fe5d7b8a219ade11593849597f60824fa739c36.zip |
dbapi: remove redundant missing_enabled/disabled
-rw-r--r-- | pym/portage/dbapi/__init__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pym/portage/dbapi/__init__.py b/pym/portage/dbapi/__init__.py index ae48e53b3..7d137b0bb 100644 --- a/pym/portage/dbapi/__init__.py +++ b/pym/portage/dbapi/__init__.py @@ -155,8 +155,7 @@ class dbapi(object): iuse = frozenset(x.lstrip('+-') for x in iuse.split()) missing_iuse = False for x in atom.unevaluated_atom.use.required: - if x not in iuse and x not in atom.use.missing_enabled \ - and x not in atom.use.missing_disabled and not iuse_implicit_match(x): + if x not in iuse and not iuse_implicit_match(x): missing_iuse = True break if missing_iuse: |