/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Martin Pool
  • Date: 2009-09-11 07:55:48 UTC
  • mfrom: (4634.43.1 2.0)
  • mto: This revision was merged to the branch mainline in revision 4689.
  • Revision ID: mbp@sourcefrog.net-20090911075548-kzznjy7emvpqnz1n
merge 2.0rc2, sphinx, and various fixes back to trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1739
1739
            # The stream included an inventory-delta record, but the remote
1740
1740
            # side isn't new enough to support them.  So we need to send the
1741
1741
            # rest of the stream via VFS.
 
1742
            self.target_repo.refresh_data()
1742
1743
            return self._resume_stream_with_vfs(response, src_format)
1743
1744
        if response[0][0] == 'missing-basis':
1744
1745
            tokens, missing_keys = bencode.bdecode_as_tuple(response[0][1])
2267
2268
        medium = self._client._medium
2268
2269
        if medium._is_remote_before((1, 18)):
2269
2270
            self._vfs_set_tags_bytes(bytes)
 
2271
            return
2270
2272
        try:
2271
2273
            args = (
2272
2274
                self._remote_path(), self._lock_token, self._repo_lock_token)