~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/weave_fmt/branch.py

(jelmer) Reduce the number of connections made during "bzr branch
 --stacked". (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
134
134
        return "Branch format 4"
135
135
 
136
136
    def open(self, a_bzrdir, name=None, _found=False, ignore_fallbacks=False,
137
 
            found_repository=None):
 
137
            found_repository=None, possible_transports=None):
138
138
        """See BranchFormat.open()."""
139
139
        if name is not None:
140
140
            raise errors.NoColocatedBranchSupport(self)
147
147
                         _control_files=a_bzrdir._control_files,
148
148
                         a_bzrdir=a_bzrdir,
149
149
                         name=name,
150
 
                         _repository=found_repository)
 
150
                         _repository=found_repository,
 
151
                         possible_transports=possible_transports)
151
152
 
152
153
    def __str__(self):
153
154
        return "Bazaar-NG branch format 4"