/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 dir.py

Remove explicit use of rich root formats.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
from bzrlib.plugins.git import (
31
31
    LocalGitBzrDirFormat,
32
 
    get_rich_root_format,
33
32
    )
34
33
 
35
34
 
77
76
        return True
78
77
 
79
78
    def cloning_metadir(self, stacked=False):
80
 
        return get_rich_root_format(stacked)
 
79
        return bzrdir.format_registry.make_bzrdir("default")
81
80
 
82
81
    def _branch_name_to_ref(self, name):
83
82
        raise NotImplementedError(self._branch_name_to_ref)