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

Use default-rich-root if possible.

Show diffs side-by-side

added added

removed removed

Lines of Context:
225
225
plugin_cmds.register_lazy("cmd_git_import", [], "bzrlib.plugins.git.commands")
226
226
 
227
227
def get_rich_root_format():
228
 
    return bzrdir.format_registry.make_bzrdir("1.9-rich-root")
 
228
    try:
 
229
        return bzrdir.format_registry.make_bzrdir("default-rich-root")
 
230
    except KeyError:
 
231
        return bzrdir.format_registry.make_bzrdir("1.9-rich-root")
229
232
 
230
233
def test_suite():
231
234
    from bzrlib.plugins.git import tests