/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

Add optimized handling when fetching from git to git.

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
    def open_repository(self):
90
90
        return RemoteGitRepository(self, self._lockfiles)
91
91
 
92
 
    def open_branch(self):
 
92
    def open_branch(self, _unsupported=False):
93
93
        repo = self.open_repository()
94
94
        # TODO: Support for multiple branches in one bzrdir in bzrlib!
95
95
        return RemoteGitBranch(self, repo, "HEAD", self._lockfiles)