Submitter | phabricator |
---|---|
Date | Dec. 27, 2019, 4:01 p.m. |
Message ID | <differential-rev-PHID-DREV-s5n2twlae66uiqskodtd-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/44048/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -1439,7 +1439,7 @@ return b def phase(self): - phase = phases.draft # default phase to draft + phase = phases.newcommitphase(self._repo.ui) for p in self.parents(): phase = max(phase, p.phase()) return phase