author | Matt Mackall <mpm@selenic.com> |
Wed, 01 Feb 2012 14:17:26 -0600 | |
branch | stable |
changeset 16051 | 2aa5b51f310f |
parent 16050 | aaaa7ebc578b |
child 16052 | 79e37dd6c28f |
--- a/mercurial/phases.py Wed Feb 01 17:59:51 2012 -0200 +++ b/mercurial/phases.py Wed Feb 01 14:17:26 2012 -0600 @@ -239,6 +239,9 @@ if currentphase == oldphase and newphase < oldphase: advanceboundary(repo, newphase, [bin(nhex)]) return 1 + elif currentphase == newphase: + # raced, but got correct result + return 1 else: return 0 finally: