/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: Robert Collins
  • Date: 2006-02-15 08:11:37 UTC
  • mto: (1534.1.24 integration)
  • mto: This revision was merged to the branch mainline in revision 1554.
  • Revision ID: robertc@robertcollins.net-20060215081137-4c27377517e96dd1
Make format 4/5/6 branches share a single LockableFiles instance across wt/branch/repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
500
500
class BzrDirPreSplitOut(BzrDir):
501
501
    """A common class for the all-in-one formats."""
502
502
 
 
503
    def __init__(self, _transport, _format):
 
504
        """See BzrDir.__init__."""
 
505
        super(BzrDirPreSplitOut, self).__init__(_transport, _format)
 
506
        self._control_files = LockableFiles(self.get_branch_transport(None),
 
507
                                            'branch-lock')
 
508
 
503
509
    def clone(self, url, revision_id=None, basis=None, force_new_repo=False):
504
510
        """See BzrDir.clone()."""
505
511
        from bzrlib.workingtree import WorkingTreeFormat2