Skip to content
Snippets Groups Projects
Commit 27fefb7e authored by Siddharth Agarwal's avatar Siddharth Agarwal
Browse files

findcommonoutgoing: use githandler from repo

parent 2659f63f
No related branches found
No related tags found
No related merge requests found
......@@ -156,8 +156,7 @@
def findcommonoutgoing(orig, repo, other, *args, **kwargs):
if isinstance(other, gitrepo.gitrepo):
git = GitHandler(repo, repo.ui)
heads = git.get_refs(other.path)[0]
heads = repo.githandler.get_refs(other.path)[0]
kw = {}
kw.update(kwargs)
for val, k in zip(args,
......
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