equal
deleted
inserted
replaced
103 def known(self, nodes): |
103 def known(self, nodes): |
104 return self._repo.known(nodes) |
104 return self._repo.known(nodes) |
105 |
105 |
106 def getbundle(self, source, heads=None, common=None, bundlecaps=None, |
106 def getbundle(self, source, heads=None, common=None, bundlecaps=None, |
107 format='HG10'): |
107 format='HG10'): |
108 return changegroup.getbundle(self._repo, source, heads=heads, |
108 return exchange.getbundle(self._repo, source, heads=heads, |
109 common=common, bundlecaps=bundlecaps) |
109 common=common, bundlecaps=bundlecaps) |
110 |
110 |
111 # TODO We might want to move the next two calls into legacypeer and add |
111 # TODO We might want to move the next two calls into legacypeer and add |
112 # unbundle instead. |
112 # unbundle instead. |
113 |
113 |
114 def lock(self): |
114 def lock(self): |