hgext/largefiles/lfutil.py
branchstable
changeset 17270 32246faba53a
parent 16928 73b9286e667c
child 17425 e95ec38f86b0
child 17659 ae57920ac188
--- a/hgext/largefiles/lfutil.py	Fri Jul 20 19:14:41 2012 -0400
+++ b/hgext/largefiles/lfutil.py	Fri Jul 20 23:50:52 2012 -0400
@@ -53,7 +53,7 @@
 def findoutgoing(repo, remote, force):
     from mercurial import discovery
     common, _anyinc, _heads = discovery.findcommonincoming(repo,
-        remote, force=force)
+        remote.peer(), force=force)
     return repo.changelog.findmissing(common)
 
 # -- Private worker functions ------------------------------------------