/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 fetching of remote repositories on Windows.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
    )
66
66
from dulwich.pack import (
67
67
    Pack,
 
68
    PackData,
68
69
    )
69
70
import os
70
71
import tempfile
202
203
        self.resolve_ext_ref = resolve_ext_ref
203
204
 
204
205
    @property
 
206
    def data(self):
 
207
        if self._data is None:
 
208
            self._data = PackData(self._data_path)
 
209
        return self._data
 
210
 
 
211
    @property
205
212
    def index(self):
206
213
        if self._idx is None:
207
214
            if not os.path.exists(self._idx_path):