/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: 2018-01-08 16:45:05 UTC
  • mfrom: (6842.1.2 move-add-reference)
  • Revision ID: jelmer@jelmer.uk-20180108164505-yz76bj6rgje62o5c
Merge lp:~jelmer/brz/move-add-reference.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2134
2134
        self.other_tree = other_tree
2135
2135
 
2136
2136
 
2137
 
class BadReferenceTarget(InternalBzrError):
2138
 
 
2139
 
    _fmt = "Can't add reference to %(other_tree)s into %(tree)s." \
2140
 
           "%(reason)s"
2141
 
 
2142
 
    def __init__(self, tree, other_tree, reason):
2143
 
        self.tree = tree
2144
 
        self.other_tree = other_tree
2145
 
        self.reason = reason
2146
 
 
2147
 
 
2148
2137
class NoSuchTag(BzrError):
2149
2138
 
2150
2139
    _fmt = "No such tag: %(tag_name)s"