~jelmer/debian/sid/bzr-git/xs-testsuite-field-in-debian-control

« back to all changes in this revision

Viewing changes to dir.py

  • Committer: Jelmer Vernooij
  • Date: 2010-07-30 11:58:30 UTC
  • mfrom: (17.25.365 upstream)
  • Revision ID: jelmer@samba.org-20100730115830-s53plrxt5jnwf4fj
New upstream snapshot.

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)