/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 unsupported flag to open_branch().

Show diffs side-by-side

added added

removed removed

Lines of Context:
195
195
    def open_repository(self):
196
196
        return RemoteGitRepository(self, self._lockfiles)
197
197
 
198
 
    def open_branch(self, ignore_fallbacks=False, name=None):
 
198
    def open_branch(self, ignore_fallbacks=False, name=None,
 
199
                    unsupported=False):
199
200
        repo = self.open_repository()
200
201
        refname = self._branch_name_to_ref(name)
201
202
        return RemoteGitBranch(self, repo, refname, self._lockfiles)