~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

(jelmer) Make default Branch implementation oriented to storing just tip
 rather than full history. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2849
2849
            missing_parent = parent_map[missing_parent]
2850
2850
        raise errors.RevisionNotPresent(missing_parent, self.repository)
2851
2851
 
2852
 
    def _last_revision_info(self):
 
2852
    def _read_last_revision_info(self):
2853
2853
        response = self._call('Branch.last_revision_info', self._remote_path())
2854
2854
        if response[0] != 'ok':
2855
2855
            raise SmartProtocolError('unexpected response code %s' % (response,))