equal
deleted
inserted
replaced
234 b = bundle2.getunbundler(self.ui, stream) |
234 b = bundle2.getunbundler(self.ui, stream) |
235 bundle2.processbundle(self._repo, b) |
235 bundle2.processbundle(self._repo, b) |
236 raise |
236 raise |
237 except error.PushRaced as exc: |
237 except error.PushRaced as exc: |
238 raise error.ResponseError(_('push failed:'), str(exc)) |
238 raise error.ResponseError(_('push failed:'), str(exc)) |
239 |
|
240 def lock(self): |
|
241 return self._repo.lock() |
|
242 |
239 |
243 def pushkey(self, namespace, key, old, new): |
240 def pushkey(self, namespace, key, old, new): |
244 return self._repo.pushkey(namespace, key, old, new) |
241 return self._repo.pushkey(namespace, key, old, new) |
245 |
242 |
246 def listkeys(self, namespace): |
243 def listkeys(self, namespace): |