/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

Implement GitBranchFormat.get_format_description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
 
42
42
class GitBranchFormat(branch.BranchFormat):
43
43
 
44
 
    def get_branch_description(self):
 
44
    def get_format_description(self):
45
45
        return 'Git Branch'
46
46
 
47
47