~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Benoît Pierre
  • Date: 2008-12-02 21:21:45 UTC
  • mfrom: (3878 +trunk)
  • mto: (4056.1.1 trunk2)
  • mto: This revision was merged to the branch mainline in revision 4058.
  • Revision ID: benoit.pierre@gmail.com-20081202212145-e2lr5ec5vyu0xp13
Merge with upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2258
2258
    rich_root_data = False
2259
2259
    supports_tree_reference = False
2260
2260
    supports_external_lookups = False
2261
 
    _matchingbzrdir = bzrdir.BzrDirMetaFormat1()
 
2261
 
 
2262
    @property
 
2263
    def _matchingbzrdir(self):
 
2264
        matching = bzrdir.BzrDirMetaFormat1()
 
2265
        matching.repository_format = self
 
2266
        return matching
2262
2267
 
2263
2268
    def __init__(self):
2264
2269
        super(MetaDirRepositoryFormat, self).__init__()