~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Martin Pool
  • Date: 2005-09-30 05:15:03 UTC
  • mto: (1185.14.2)
  • mto: This revision was merged to the branch mainline in revision 1396.
  • Revision ID: mbp@sourcefrog.net-20050930051503-9c049325215ddd1c
- fix up Branch.open_downlevel for Transport

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
        """Open a branch which may be of an old format.
127
127
        
128
128
        Only local branches are supported."""
129
 
        return _Branch(base, relax_version_check=True)
 
129
        return _Branch(get_transport(base), relax_version_check=True)
130
130
        
131
131
    @staticmethod
132
132
    def open(base):