From 6e33bd8b7b3215d51f0b14e30d911620f717d68d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Mon, 18 May 2009 12:27:15 +0200 Subject: Fix --- portato/backend/portage/package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) -- cgit v1.2.3