Fix mercurial issue2855

I accidentally broke transplant by making revs a required argument.
This commit is contained in:
Brendan Cully 2011-06-17 09:23:52 -07:00
parent 851456bac4
commit d387fe4170

View File

@ -155,15 +155,16 @@ try:
except ImportError:
pass
def getremotechanges(orig, ui, repo, other, revs, *args, **opts):
def getremotechanges(orig, ui, repo, other, *args, **opts):
if isinstance(other, gitrepo.gitrepo):
revs = opts.get('onlyheads', opts.get('revs'))
git = GitHandler(repo, ui)
r, c, cleanup = git.getremotechanges(other, revs)
# ugh. This is ugly even by mercurial API compatibility standards
if 'onlyheads' not in orig.func_code.co_varnames:
cleanup = None
return r, c, cleanup
return orig(ui, repo, other, revs, *args, **opts)
return orig(ui, repo, other, *args, **opts)
try:
extensions.wrapfunction(bundlerepo, 'getremotechanges', getremotechanges)
except AttributeError: