# HG changeset patch # User Pierre-Yves David # Date 1434408772 25200 # Node ID dd2349ccfa6686ec74b847044c5c04596f67edd5 # Parent f1d46075b13a90671c14b2737b1d4f07a3fa1a4a phase: also copy phase's sets when copying phase cache We forgot to add such copy when we added the attributes. diff -r f1d46075b13a -r dd2349ccfa66 mercurial/phases.py --- a/mercurial/phases.py Tue Jun 16 16:15:15 2015 -0400 +++ b/mercurial/phases.py Mon Jun 15 15:52:52 2015 -0700 @@ -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):