/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

SupportĀ settingĀ tags.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
from dulwich.pack import PackData, Pack
39
39
 
 
40
# Don't run any tests on GitSmartTransport as it is not intended to be 
 
41
# a full implementation of Transport
 
42
def get_test_permutations():
 
43
    return []
 
44
 
40
45
 
41
46
class GitSmartTransport(Transport):
42
47
 
89
94
    def open_repository(self):
90
95
        return RemoteGitRepository(self, self._lockfiles)
91
96
 
92
 
    def open_branch(self):
 
97
    def open_branch(self, _unsupported=False):
93
98
        repo = self.open_repository()
94
99
        # TODO: Support for multiple branches in one bzrdir in bzrlib!
95
100
        return RemoteGitBranch(self, repo, "HEAD", self._lockfiles)