Skip to content
Snippets Groups Projects
Commit c2228c1d authored by Dan Villiom Podlaski Christiansen's avatar Dan Villiom Podlaski Christiansen
Browse files

pull: fix compatibility with mercurial default

parent 50748301
No related branches found
No related tags found
1 merge request!133pull: fix compatibility with mercurial default
Pipeline #28927 passed
......@@ -568,7 +568,14 @@
lock.release()
wlock.release()
else:
return orig(repo, remote, heads, force, bookmarks=bookmarks, **kwargs)
return orig(
repo,
remote,
heads=heads,
force=force,
bookmarks=bookmarks,
**kwargs
)
extensions.wrapfunction(exchange, b'pull', exchangepull)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment