/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 breezy/errors.py

  • Committer: Jelmer Vernooij
  • Date: 2019-06-22 12:07:42 UTC
  • mfrom: (7356 work)
  • mto: This revision was merged to the branch mainline in revision 7357.
  • Revision ID: jelmer@jelmer.uk-20190622120742-cxdr5la8cav78tho
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2145
2145
class TagsNotSupported(BzrError):
2146
2146
 
2147
2147
    _fmt = ("Tags not supported by %(branch)s;"
2148
 
            " you may be able to use brz upgrade.")
 
2148
            " you may be able to use 'brz upgrade %(branch_url)s'.")
2149
2149
 
2150
2150
    def __init__(self, branch):
2151
2151
        self.branch = branch
 
2152
        self.branch_url = branch.user_url
2152
2153
 
2153
2154
 
2154
2155
class TagAlreadyExists(BzrError):