diff options
author | necoro <> | 2006-10-08 17:26:27 +0000 |
---|---|---|
committer | necoro <> | 2006-10-08 17:26:27 +0000 |
commit | f27145ec49c6f1cdd13db2f3bf389164f10ac828 (patch) | |
tree | 46368b0191a98a7406ea860972f25114955e465f /geneticone/gui/gui_helper.py | |
parent | 1e9ddc03e5667e5a9297508f7bec8b7f3ea46dc9 (diff) | |
download | portato-f27145ec49c6f1cdd13db2f3bf389164f10ac828.tar.gz portato-f27145ec49c6f1cdd13db2f3bf389164f10ac828.tar.bz2 portato-f27145ec49c6f1cdd13db2f3bf389164f10ac828.zip |
Made the testing stuff working too ... I hope ^^ ... removed obsolete-dir
Diffstat (limited to 'geneticone/gui/gui_helper.py')
-rw-r--r-- | geneticone/gui/gui_helper.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/geneticone/gui/gui_helper.py b/geneticone/gui/gui_helper.py index b5683d2..2120ea3 100644 --- a/geneticone/gui/gui_helper.py +++ b/geneticone/gui/gui_helper.py @@ -328,7 +328,10 @@ class EmergeQueue: self.mergequeue.remove(cpv) except ValueError: # this is a dependency - ignore pass - if removeNewFlags: flags.remove_new_use_flags(cpv) + if removeNewFlags: + flags.remove_new_use_flags(cpv) + flags.remove_new_masked(cpv) + flags.remove_new_testing(cpv) else: # in Unmerge self.unmergequeue.remove(cpv) |