/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/repofmt/knitrepo.py

Upgraded to the latest bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
407
407
 
408
408
    repository_class = KnitRepository3
409
409
    rich_root_data = True
410
 
    support_tree_reference = True
 
410
    supports_tree_reference = True
411
411
 
412
412
    def _get_matching_bzrdir(self):
413
413
        return bzrdir.format_registry.make_bzrdir('dirstate-with-subtree')
421
421
        if not target_format.rich_root_data:
422
422
            raise errors.BadConversionTarget(
423
423
                'Does not support rich root data.', target_format)
424
 
        if not getattr(target_format, 'support_tree_reference', False):
 
424
        if not getattr(target_format, 'supports_tree_reference', False):
425
425
            raise errors.BadConversionTarget(
426
426
                'Does not support nested trees', target_format)
427
427