From 5cf1a2a914a22233ae601ffbf903ac551660df56 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 7 Oct 2006 22:14:52 +0000 Subject: Stack negative user virtuals in the correct order for incremental behavior. svn path=/main/trunk/; revision=4616 --- pym/portage.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pym') diff --git a/pym/portage.py b/pym/portage.py index 9fa2b4b6c..fff074035 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1746,7 +1746,8 @@ class config: self.userVirtuals = stack_dictlist([self.userVirtuals],incremental=1) # Collapse all the profile virtuals including user negations. - self.dirVirtuals = stack_dictlist([self.negVirtuals]+self.dirVirtuals,incremental=1) + self.dirVirtuals = stack_dictlist( + self.dirVirtuals + [self.negVirtuals], incremental=1) # Repoman does not use user or tree virtuals. if os.environ.get("PORTAGE_CALLER","") != "repoman": -- cgit v1.2.3-1-g7c22