diff mercurial/phases.py @ 26135:dd2349ccfa66

phase: also copy phase's sets when copying phase cache We forgot to add such copy when we added the attributes.
author Pierre-Yves David <pierre-yves.david@fb.com>
date Mon, 15 Jun 2015 15:52:52 -0700 (2015-06-15)
parents 262e6ad93885
children 9e551f155810
line wrap: on
line diff
--- a/mercurial/phases.py
+++ b/mercurial/phases.py
@@ -167,6 +167,7 @@
         ph.dirty = self.dirty
         ph.opener = self.opener
         ph._phaserevs = self._phaserevs
+        ph._phasesets = self._phasesets
         return ph
 
     def replace(self, phcache):