~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-15 13:20:18 UTC
  • mfrom: (1924 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1926.
  • Revision ID: john@arbash-meinel.com-20060815132018-b753fd07689ac31a
[merge] bzr.dev 1924

Show diffs side-by-side

added added

removed removed

Lines of Context:
460
460
        _unsupported is a private parameter to the BzrDir class.
461
461
        """
462
462
        t = get_transport(base)
463
 
        mutter("trying to open %r with transport %r", base, t)
 
463
        # mutter("trying to open %r with transport %r", base, t)
464
464
        format = BzrDirFormat.find_format(t)
465
465
        BzrDir._check_supported(format, _unsupported)
466
466
        return format.open(t, _found=True)