~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/branch.py

(jelmer) Use the absolute_import feature everywhere in bzrlib,
 and add a source test to make sure it's used everywhere. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
299
299
 
300
300
    def do_tip_change_with_locked_branch(self, branch, new_last_revision_id):
301
301
        if new_last_revision_id == 'null:':
302
 
            branch.set_last_revision_info(0, new_last_revision_id)
 
302
            branch._set_revision_history([])
303
303
        else:
304
304
            if not branch.repository.has_revision(new_last_revision_id):
305
305
                return FailedSmartServerResponse(
306
306
                    ('NoSuchRevision', new_last_revision_id))
307
 
            branch.generate_revision_history(new_last_revision_id, None, None)
 
307
            branch._set_revision_history(branch._lefthand_history(
 
308
                new_last_revision_id, None, None))
308
309
        return SuccessfulSmartServerResponse(('ok',))
309
310
 
310
311