From: Zac Medico Date: Sat, 10 Nov 2007 06:48:24 +0000 (-0000) Subject: Fix WorldSet.cleanPackage() so that it properly preserves X-Git-Tag: v2.2_pre1~408 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8379acb08643acb9c4e372911219fd3e9ae86e2a;p=portage.git Fix WorldSet.cleanPackage() so that it properly preserves nonatoms (sets) in the world file. svn path=/main/trunk/; revision=8484 --- diff --git a/pym/portage/sets/files.py b/pym/portage/sets/files.py index 5b6fe8838..c6a6f7430 100644 --- a/pym/portage/sets/files.py +++ b/pym/portage/sets/files.py @@ -170,6 +170,7 @@ class WorldSet(StaticFileSet): #this doesn't match the package we're unmerging; keep it. newworldlist.append(x) + newworldlist.extend(self._nonatoms) self.replace(newworldlist) self.unlock()