summaryrefslogtreecommitdiff
path: root/portato/backend/portage/package.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2008-05-21 21:20:42 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2008-05-21 21:20:42 +0200
commitbe7f3e89a19cadad856dae717836f9ed3a66c85d (patch)
treef7388486a45d7c44804eac89cdc491ce618ae626 /portato/backend/portage/package.py
parentf4368fbfb9fd0de6f1d1625ffddee17b67926c89 (diff)
downloadportato-be7f3e89a19cadad856dae717836f9ed3a66c85d.tar.gz
portato-be7f3e89a19cadad856dae717836f9ed3a66c85d.tar.bz2
portato-be7f3e89a19cadad856dae717836f9ed3a66c85d.zip
Small fixes
Diffstat (limited to 'portato/backend/portage/package.py')
-rw-r--r--portato/backend/portage/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/backend/portage/package.py b/portato/backend/portage/package.py
index 0452641..02d141a 100644
--- a/portato/backend/portage/package.py
+++ b/portato/backend/portage/package.py
@@ -130,7 +130,7 @@ class PortagePackage (Package):
# get the normal masked ones
if self._status and ("profile" in self._status or "package.mask" in self._status):
- return flags.is_locally_masked(self, changes = False) # assume that if it is locally masked, it is not masked by the system
+ return not flags.is_locally_masked(self, changes = False) # assume that if it is locally masked, it is not masked by the system
else: # more difficult: get the ones we unmasked, but are masked by the system
try:
masked = self._settings.settings.pmaskdict[self.get_cp()]