projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2bc977e
)
dbapi: remove redundant missing_enabled/disabled
author
Zac Medico
<zmedico@gentoo.org>
Tue, 30 Nov 2010 06:16:32 +0000
(22:16 -0800)
committer
Zac Medico
<zmedico@gentoo.org>
Tue, 30 Nov 2010 06:16:32 +0000
(22:16 -0800)
pym/portage/dbapi/__init__.py
patch
|
blob
|
history
diff --git
a/pym/portage/dbapi/__init__.py
b/pym/portage/dbapi/__init__.py
index c5980c22713860b54e107371570dc0e46ef550a0..4534cc73138813f4a65743836d5b54a1c24a4df3 100644
(file)
--- a/
pym/portage/dbapi/__init__.py
+++ b/
pym/portage/dbapi/__init__.py
@@
-166,8
+166,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: