# HG changeset patch # User Brendan Cully # Date 1168980662 28800 # Node ID c8f26bd24e8652f6dc66680dfc51187e335b5408 # Parent 9bd078ce8de91c41f652e50a34f0dce01374a247 Update transplant's merge.update call diff --git a/hgext/transplant.py b/hgext/transplant.py --- a/hgext/transplant.py +++ b/hgext/transplant.py @@ -119,7 +119,8 @@ class transplanter: if pulls: if source != repo: repo.pull(source, heads=pulls, lock=lock) - merge.update(repo, pulls[-1], wlock=wlock) + merge.update(repo, pulls[-1], False, False, None, + wlock=wlock) p1, p2 = repo.dirstate.parents() pulls = [] @@ -161,7 +162,7 @@ class transplanter: os.unlink(patchfile) if pulls: repo.pull(source, heads=pulls, lock=lock) - merge.update(repo, pulls[-1], wlock=wlock) + merge.update(repo, pulls[-1], False, False, None, wlock=wlock) finally: self.saveseries(revmap, merges) self.transplants.write()