# HG changeset patch # User Pierre-Yves David # Date 2015-06-15 22:52:52 # 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 --git a/mercurial/phases.py b/mercurial/phases.py --- a/mercurial/phases.py +++ b/mercurial/phases.py @@ -167,6 +167,7 @@ class phasecache(object): ph.dirty = self.dirty ph.opener = self.opener ph._phaserevs = self._phaserevs + ph._phasesets = self._phasesets return ph def replace(self, phcache):