hgext/largefiles/reposetup.py
changeset 20860 81d6dc8c3c63
parent 20790 49f2d5644f04
parent 20858 bc56ec9e64df
child 21042 32b3331f18eb
--- a/hgext/largefiles/reposetup.py	Tue Mar 18 14:29:33 2014 -0700
+++ b/hgext/largefiles/reposetup.py	Mon Mar 31 10:12:07 2014 -0500
@@ -16,14 +16,13 @@
 from mercurial import localrepo
 
 import lfcommands
-import proto
 import lfutil
 
 def reposetup(ui, repo):
-    # wire repositories should be given new wireproto functions but not the
-    # other largefiles modifications
+    # wire repositories should be given new wireproto functions
+    # by "proto.wirereposetup()" via "hg.wirepeersetupfuncs"
     if not repo.local():
-        return proto.wirereposetup(ui, repo)
+        return
 
     class lfilesrepo(repo.__class__):
         lfstatus = False