/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

  • Committer: Jelmer Vernooij
  • Date: 2009-03-14 22:11:34 UTC
  • mto: (0.200.259 trunk)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20090314221134-cjtumbw9cejzt18g
Add basic tests for local fetch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
from bzrlib.plugins.git import (
34
34
    errors,
35
35
    branch,
 
36
    get_rich_root_format,
36
37
    repository,
37
38
    workingtree,
38
39
    )
79
80
        return True
80
81
 
81
82
    def cloning_metadir(self, stacked=False):
82
 
        return bzrlib.bzrdir.format_registry.make_bzrdir("1.9-rich-root")
 
83
        return get_rich_root_format()
83
84
 
84
85
 
85
86
class LocalGitDir(GitDir):