# HG changeset patch # User Kevin Bullock # Date 2012-12-07 04:07:44 # Node ID 551e2901192e7a499baad81892ac4bb3e981f673 # Parent f0cfa27c712a770f39adcbe6aca7af322e1cc55e merge: fix mistake in moved _checkcollision call from 5881d5b7552f diff --git a/mercurial/merge.py b/mercurial/merge.py --- a/mercurial/merge.py +++ b/mercurial/merge.py @@ -458,7 +458,7 @@ def calculateupdates(repo, tctx, mctx, a (force or not tctx.dirty(missing=True, branch=False))): _checkcollision(mctx, None) else: - _checkcollision(mctx, tctx) + _checkcollision(mctx, (tctx, ancestor)) if not force: _checkunknown(repo, tctx, mctx) if tctx.rev() is None: