~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2011-12-08 08:32:36 UTC
  • mto: This revision was merged to the branch mainline in revision 6350.
  • Revision ID: v.ladeuil+lp@free.fr-20111208083236-3cedhs5m0ph6hamk
Tags: bzr-2.5b4
ReleaseĀ 2.5b4

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"