/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

Fix the build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
"""A GIT branch and repository format implementation for bzr."""
20
20
 
21
21
from bzrlib import bzrdir
22
 
from bzrlib.plugins.git.git_dir import GitBzrDirFormat
 
22
from bzrlib.plugins.git.dir import GitBzrDirFormat
23
23
 
24
24
bzrdir.format_registry.register(
25
25
    'git', GitBzrDirFormat,
26
 
    help='GIT - the stupid content tracker.',
27
 
    native=False, hidden=True, experimental=True,
 
26
    help='GIT repository.', 
 
27
    native=False, experimental=True,
28
28
    )
29
29
 
30
30
bzrdir.BzrDirFormat.register_control_format(GitBzrDirFormat)