/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

Cope with the fact that the old format didn't export file ids.

Show diffs side-by-side

added added

removed removed

Lines of Context:
195
195
        self._lockfiles = lockfiles
196
196
        self._mode_check_done = None
197
197
 
198
 
    def _branch_name_to_ref(self, name):
199
 
        return branch_name_to_ref(name, default="HEAD")
 
198
    def _branch_name_to_ref(self, name, default="HEAD"):
 
199
        return branch_name_to_ref(name, default=default)
200
200
 
201
201
    def open_repository(self):
202
202
        return RemoteGitRepository(self, self._lockfiles)