diff options
author | necoro <> | 2007-09-06 03:12:03 +0000 |
---|---|---|
committer | necoro <> | 2007-09-06 03:12:03 +0000 |
commit | fc78febbfdc08cfb80a57f8c82c6c921f9e16314 (patch) | |
tree | beedc8c32638f333aa0ba13d839925141936b6f0 /portato/gui/gui_helper.py | |
parent | 8c066e79b03ad4e20a9f7c4ae36a9e247b79a8eb (diff) | |
download | portato-fc78febbfdc08cfb80a57f8c82c6c921f9e16314.tar.gz portato-fc78febbfdc08cfb80a57f8c82c6c921f9e16314.tar.bz2 portato-fc78febbfdc08cfb80a57f8c82c6c921f9e16314.zip |
removed bug which deleted new useflags when a dependency pulled in by new useflag is masked
Diffstat (limited to '')
-rw-r--r-- | portato/gui/gui_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/gui_helper.py b/portato/gui/gui_helper.py index 0d7ecf8..e1c9ce9 100644 --- a/portato/gui/gui_helper.py +++ b/portato/gui/gui_helper.py @@ -392,7 +392,7 @@ class EmergeQueue: if self.tree.iter_has_parent(it): while self.tree.iter_has_parent(it): it = self.tree.parent_iter(it) - self.remove_with_children(it) + self.remove_with_children(it, removeNewFlags = False) raise # add iter |