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

Provide __str__ implementation for mapping, fix docstring for ForeignGit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
    revid_prefix = 'git-v1'
134
134
    experimental = False
135
135
 
 
136
    def __str__(self):
 
137
        return self.revid_prefix
 
138
 
136
139
 
137
140
class BzrGitMappingExperimental(BzrGitMappingv1):
138
141
    revid_prefix = 'git-experimental'
159
162
 
160
163
 
161
164
class ForeignGit(ForeignVcs):
162
 
    """Foreign Git."""
 
165
    """The Git Stupid Content Tracker"""
163
166
 
164
167
    def __init__(self):
165
168
        super(ForeignGit, self).__init__(mapping_registry)