hgext3rd/evolve/obsexchange.py
changeset 2076 5c6d05c34ba4
parent 2075 a7c0685ba6d9
child 2079 86984df5f92e
--- a/hgext3rd/evolve/obsexchange.py	Thu Mar 09 17:50:50 2017 -0800
+++ b/hgext3rd/evolve/obsexchange.py	Tue Mar 07 15:58:15 2017 +0100
@@ -64,7 +64,7 @@
     ret = orig(pullop, kwargs)
     if ('obsmarkers' in kwargs and
         pullop.remote.capable('_evoext_getbundle_obscommon')):
-        boundaries = obsdiscovery._buildpullobsmarkersboundaries(pullop)
+        boundaries = obsdiscovery.buildpullobsmarkersboundaries(pullop)
         common = boundaries['common']
         if common != [node.nullid]:
             kwargs['evo_obscommon'] = common
@@ -343,7 +343,7 @@
         return orig(pullop)
     tr = None
     ui = pullop.repo.ui
-    boundaries = obsdiscovery._buildpullobsmarkersboundaries(pullop)
+    boundaries = obsdiscovery.buildpullobsmarkersboundaries(pullop)
     if not set(boundaries['heads']) - set(boundaries['common']):
         obsexcmsg(ui, "nothing to pull\n")
         return None