diff options
author | necoro <> | 2007-02-16 18:14:08 +0000 |
---|---|---|
committer | necoro <> | 2007-02-16 18:14:08 +0000 |
commit | b4c88233aa6dabd2d9301350a240b8ddcf09255a (patch) | |
tree | 8fc90d05b8c6a1804df56e0cb897320a02a04dcb /portato/backend/flags.py | |
parent | d0b2609768bc854468b56a63cc014650ffe3c51c (diff) | |
download | portato-b4c88233aa6dabd2d9301350a240b8ddcf09255a.tar.gz portato-b4c88233aa6dabd2d9301350a240b8ddcf09255a.tar.bz2 portato-b4c88233aa6dabd2d9301350a240b8ddcf09255a.zip |
Use icon instead of the asterisk
Renamed wrong param name "allowed" to "use_keywords" in package.is_testing()
Diffstat (limited to '')
-rw-r--r-- | portato/backend/flags.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/backend/flags.py b/portato/backend/flags.py index d1187c9..a7ba125 100644 --- a/portato/backend/flags.py +++ b/portato/backend/flags.py @@ -542,7 +542,7 @@ def set_testing (pkg, enable): if (enable and line != "-1") or (not enable and line == "-1"): newTesting[cpv].remove((file, line)) - if (enable and not pkg.is_testing(allowed=True)) or (not enable and pkg.is_testing(allowed=True)): + if (enable and not pkg.is_testing(use_keywords=True)) or (not enable and pkg.is_testing(use_keywords=True)): return if not enable: |