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

gitrepo: fix compatibility with mercurial default

parent 61b31353f516
No related branches found
No related tags found
1 merge request!132gitrepo: fix compatibility with mercurial default
Pipeline #28419 passed
......@@ -197,7 +197,14 @@
pullop.cgresult = repo.githandler.fetch(remote, heads)
return pullop
else:
return orig(repo, remote, heads, force, bookmarks=bookmarks, **kwargs)
return orig(
repo,
remote,
heads=heads,
force=force,
bookmarks=bookmarks,
**kwargs,
)
# TODO figure out something useful to do with the newbranch param
......
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