hgext/largefiles/__init__.py
branchstable
changeset 20858 bc56ec9e64df
parent 19928 d1ac3790e10a
child 21770 15d434bee41c
--- a/hgext/largefiles/__init__.py	Thu Mar 27 17:21:27 2014 -0500
+++ b/hgext/largefiles/__init__.py	Sat Mar 29 01:20:07 2014 +0900
@@ -105,9 +105,10 @@
 command.
 '''
 
-from mercurial import commands, localrepo
+from mercurial import commands, hg, localrepo
 
 import lfcommands
+import proto
 import reposetup
 import uisetup as uisetupmod
 
@@ -121,6 +122,7 @@
 
 def uisetup(ui):
     localrepo.localrepository.featuresetupfuncs.add(featuresetup)
+    hg.wirepeersetupfuncs.append(proto.wirereposetup)
     uisetupmod.uisetup(ui)
 
 commands.norepo += " lfconvert"