diff -r acfab0754584 -r 32246faba53a hgext/largefiles/lfutil.py --- 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 ------------------------------------------