/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

Handle lightweight checkouts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
163
163
    def open_repository(self):
164
164
        return RemoteGitRepository(self, self._lockfiles)
165
165
 
166
 
    def open_branch(self, _unsupported=False):
 
166
    def open_branch(self, ignore_fallbacks=False):
167
167
        repo = self.open_repository()
168
168
        # TODO: Support for multiple branches in one bzrdir in bzrlib!
169
169
        return RemoteGitBranch(self, repo, "HEAD", self._lockfiles)