/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 remote.py

Use new thin packs argument.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
            ret = self._client
66
66
            self._client = None
67
67
            return ret
68
 
        return git.client.TCPGitClient(self._host, self._port, 
69
 
            capabilities=["multi_ack", "side-band-64k", "ofs-delta", "side-band"])
 
68
        return git.client.TCPGitClient(self._host, self._port, thin_packs=False)
70
69
 
71
70
    def fetch_pack(self, determine_wants, graph_walker, pack_data, progress=None):
72
71
        if progress is None: