equal
deleted
inserted
replaced
157 |
157 |
158 def lock(self): |
158 def lock(self): |
159 return self._repo.lock() |
159 return self._repo.lock() |
160 |
160 |
161 def addchangegroup(self, cg, source, url): |
161 def addchangegroup(self, cg, source, url): |
162 return changegroup.addchangegroup(self._repo, cg, source, url) |
162 return cg.apply(self._repo, source, url) |
163 |
163 |
164 def pushkey(self, namespace, key, old, new): |
164 def pushkey(self, namespace, key, old, new): |
165 return self._repo.pushkey(namespace, key, old, new) |
165 return self._repo.pushkey(namespace, key, old, new) |
166 |
166 |
167 def listkeys(self, namespace): |
167 def listkeys(self, namespace): |