diff options
author | necoro <> | 2007-04-04 17:35:05 +0000 |
---|---|---|
committer | necoro <> | 2007-04-04 17:35:05 +0000 |
commit | a54998f99c9bc5830eba7de9a76fac10f99721f0 (patch) | |
tree | 1b6478c0b32368c3a78e3f0eaf556dc576af067b /portato/backend/package.py | |
parent | 4896a255f7064cd669edb9b42dce32a57541ea62 (diff) | |
download | portato-a54998f99c9bc5830eba7de9a76fac10f99721f0.tar.gz portato-a54998f99c9bc5830eba7de9a76fac10f99721f0.tar.bz2 portato-a54998f99c9bc5830eba7de9a76fac10f99721f0.zip |
showed masked packages unmasked by the user similar to stable marked testing packages
Diffstat (limited to '')
-rw-r--r-- | portato/backend/package.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/portato/backend/package.py b/portato/backend/package.py index 0039fc0..70773cc 100644 --- a/portato/backend/package.py +++ b/portato/backend/package.py @@ -260,9 +260,11 @@ class Package: raise NotImplementedError - def is_masked (self): + def is_masked (self, use_changed = True): """Returns True if either masked by package.mask or by profile. + @param use_changed: Controls, whether changes applied to masking keywords are taken into account. + @type use_changed: boolean @returns: True if masked / False otherwise @rtype: boolean""" |