219
242
def do_tip_change_with_locked_branch(self, branch, new_last_revision_id):
220
243
if new_last_revision_id == 'null:':
223
246
if not branch.repository.has_revision(new_last_revision_id):
224
247
return FailedSmartServerResponse(
225
248
('NoSuchRevision', new_last_revision_id))
227
250
new_last_revision_id, None, None))
228
251
return SuccessfulSmartServerResponse(('ok',))