diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-05-21 20:19:41 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-05-21 20:19:41 +0200 |
commit | adb8acd0b90992a8281494c76d30a529bde45fea (patch) | |
tree | 568be900b3d4eab14422147f099536cc2ede9c57 /portato/backend/flags.py | |
parent | 6337bce4fd5ca7a7e7c16602fe7136bd6fdf4786 (diff) | |
download | portato-adb8acd0b90992a8281494c76d30a529bde45fea.tar.gz portato-adb8acd0b90992a8281494c76d30a529bde45fea.tar.bz2 portato-adb8acd0b90992a8281494c76d30a529bde45fea.zip |
Ported package
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 d388e08..018e804 100644 --- a/portato/backend/flags.py +++ b/portato/backend/flags.py @@ -677,7 +677,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(use_keywords=True)) or (not enable and pkg.is_testing(use_keywords=True)): + if (enable and not pkg.is_testing()) or (not enable and pkg.is_testing()): return if not enable: |