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

Add blackbox test for info.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
    def unlock(self):
45
45
        pass
46
46
 
47
 
    def peek(self):
48
 
        pass
49
 
 
50
47
 
51
48
class GitLockableFiles(lockable_files.LockableFiles):
52
49
    """Git specific lockable files abstraction."""
143
140
            raise errors.bzr_errors.NotBranchError(path=transport.base)
144
141
        raise errors.bzr_errors.NotBranchError(path=transport.base)
145
142
 
146
 
    def get_format_description(self):
147
 
        return "Local Git Repository"
148
 
 
149
143
 
150
144
bzrdir.BzrDirFormat.register_control_format(GitBzrDirFormat)