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

Fix typo.

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
def ref_to_tag_name(ref):
86
86
    if ref.startswith("refs/tags/"):
87
87
        return ref[len('refs/tags/'):].decode("utf-8")
88
 
    raise ValueError("unable to map ref %s back to branch name" % ref)
 
88
    raise ValueError("unable to map ref %s back to tag name" % ref)
89
89
 
90
90
 
91
91
class BazaarRefsContainer(RefsContainer):