findcommonoutgoing: use githandler from repo

This commit is contained in:
Siddharth Agarwal 2014-02-19 15:13:43 -08:00
parent 068acd034c
commit 886532ea23

View File

@ -156,8 +156,7 @@ extensions.wrapfunction(localrepo.localrepository, 'nodetags', sortednodetags)
def findcommonoutgoing(orig, repo, other, *args, **kwargs): def findcommonoutgoing(orig, repo, other, *args, **kwargs):
if isinstance(other, gitrepo.gitrepo): if isinstance(other, gitrepo.gitrepo):
git = GitHandler(repo, repo.ui) heads = repo.githandler.get_refs(other.path)[0]
heads = git.get_refs(other.path)[0]
kw = {} kw = {}
kw.update(kwargs) kw.update(kwargs)
for val, k in zip(args, for val, k in zip(args,