/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

Fix index creation when fetching from remote host.

Show diffs side-by-side

added added

removed removed

Lines of Context:
167
167
    @property
168
168
    def idx(self):
169
169
        if self._idx is None:
 
170
            if self._data is None:
 
171
                self._data = PackData(self._data_path)
170
172
            self._data.create_index_v2(self._idx_path, self.resolve_ext_ref)
171
173
            self._idx = PackIndex(self._idx_path)
172
174
        return self._idx