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

Flat is better than nested, remove the gitlib hierarchy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
    )
24
24
from bzrlib.decorators import needs_read_lock
25
25
 
26
 
from bzrlib.plugins.git.gitlib import ids
 
26
from bzrlib.plugins.git import ids
27
27
 
28
28
 
29
29
class GitBranchConfig(config.BranchConfig):
49
49
    """An adapter to git repositories for bzr Branch objects."""
50
50
 
51
51
    def __init__(self, gitdir, lockfiles):
52
 
        from bzrlib.plugins.git.gitlib import git_repository
 
52
        from bzrlib.plugins.git import git_repository
53
53
        self.bzrdir = gitdir
54
54
        self.control_files = lockfiles
55
55
        self.repository = git_repository.GitRepository(gitdir, lockfiles)