~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

Remove last uses of the init= parameter to BzrBranch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1333
1333
        """
1334
1334
        if transport is None:
1335
1335
            transport = bzrlib.transport.local.ScratchTransport()
1336
 
            super(ScratchBranch, self).__init__(transport, init=True)
 
1336
            Branch.initialize(transport.base)
 
1337
            super(ScratchBranch, self).__init__(transport)
1337
1338
        else:
1338
1339
            super(ScratchBranch, self).__init__(transport)
1339
1340