/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/bzrdir.py

  • Committer: Jelmer Vernooij
  • Date: 2011-11-27 16:55:11 UTC
  • mto: This revision was merged to the branch mainline in revision 6311.
  • Revision ID: jelmer@samba.org-20111127165511-2h20hkri53u4sbok
Only make a single connection.

Show diffs side-by-side

added added

removed removed

Lines of Context:
953
953
        return False
954
954
 
955
955
    def open_branch(self, name=None, unsupported=False,
956
 
                    ignore_fallbacks=False):
957
 
        """See BzrDir.open_branch."""
 
956
                    ignore_fallbacks=False, possible_transports=None):
 
957
        """See ControlDir.open_branch."""
958
958
        if name is None:
959
959
            name = self._get_selected_branch()
960
960
        format = self.find_branch_format(name=name)
961
961
        format.check_support_status(unsupported)
962
962
        return format.open(self, name=name,
963
 
            _found=True, ignore_fallbacks=ignore_fallbacks)
 
963
            _found=True, ignore_fallbacks=ignore_fallbacks,
 
964
            possible_transports=possible_transports)
964
965
 
965
966
    def open_repository(self, unsupported=False):
966
967
        """See BzrDir.open_repository."""