Submitter | phabricator |
---|---|
Date | Dec. 27, 2019, 5:37 p.m. |
Message ID | <703e185301df6469cb0db4b73c6e2f66@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/44057/ |
State | Not Applicable |
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