diff options
Diffstat (limited to 'portato/backend')
-rw-r--r-- | portato/backend/portage/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/backend/portage/package.py b/portato/backend/portage/package.py index 7568da0..0f4dffe 100644 --- a/portato/backend/portage/package.py +++ b/portato/backend/portage/package.py @@ -117,7 +117,7 @@ class PortagePackage (Package): def is_masked (self, use_changed = True): # things with bad EAPI are _always_ masked - if self.status.startswith("EAPI"): return True + if any(x.startswith("EAPI") for x in self._status): return True if use_changed: status = flags.new_masking_status(self.get_cpv()) |