/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 bzrlib/branch.py

  • Committer: Gary van der Merwe
  • Date: 2010-03-03 08:25:15 UTC
  • mfrom: (5072 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5073.
  • Revision ID: garyvdm@gmail.com-20100303082515-7xkgy4a55m84nio2
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
167
167
        """
168
168
        control = bzrdir.BzrDir.open(base, _unsupported,
169
169
                                     possible_transports=possible_transports)
170
 
        return control.open_branch(_unsupported)
 
170
        return control.open_branch(unsupported=_unsupported)
171
171
 
172
172
    @staticmethod
173
173
    def open_from_transport(transport, _unsupported=False):
174
174
        """Open the branch rooted at transport"""
175
175
        control = bzrdir.BzrDir.open_from_transport(transport, _unsupported)
176
 
        return control.open_branch(_unsupported)
 
176
        return control.open_branch(unsupported=_unsupported)
177
177
 
178
178
    @staticmethod
179
179
    def open_containing(url, possible_transports=None):