/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: Breezy landing bot
  • Author(s): Vincent Ladeuil
  • Date: 2019-06-18 17:47:33 UTC
  • mfrom: (7350.1.3 trunk)
  • Revision ID: breezy.the.bot@gmail.com-20190618174733-da1lo1e8a10ap9db
Merge 3.0 into trunk resolving conflicts

Merged from https://code.launchpad.net/~vila/brz/trunk/+merge/368964

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):