Submitter | phabricator |
---|---|
Date | Feb. 26, 2018, 9:32 p.m. |
Message ID | <differential-rev-PHID-DREV-rhsryfr7ftz2fhjge3p6-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/28433/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/phases.py b/mercurial/phases.py --- a/mercurial/phases.py +++ b/mercurial/phases.py @@ -326,7 +326,7 @@ def _write(self, fp): for phase, roots in enumerate(self.phaseroots): - for h in roots: + for h in sorted(roots): fp.write('%i %s\n' % (phase, hex(h))) self.dirty = False