~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

Merge in real stacked repository work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
        )
41
41
from bzrlib.config import BranchConfig, TreeConfig
42
42
from bzrlib.lockable_files import LockableFiles, TransportLock
 
43
from bzrlib.repofmt.pack_repo import RepositoryFormatPackDevelopment1Subtree
43
44
from bzrlib.tag import (
44
45
    BasicTags,
45
46
    DisabledTags,
1236
1237
                      ]
1237
1238
        return self._initialize_helper(a_bzrdir, utf8_files)
1238
1239
 
 
1240
    def __init__(self):
 
1241
        super(BzrBranchFormat7, self).__init__()
 
1242
        self._matchingbzrdir.repository_format = \
 
1243
            RepositoryFormatPackDevelopment1Subtree()
 
1244
 
1239
1245
 
1240
1246
class BranchReferenceFormat(BranchFormat):
1241
1247
    """Bzr branch reference format.