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

merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
2298
2298
        self.reason = reason
2299
2299
 
2300
2300
 
 
2301
class InvalidBugTrackerURL(BzrError):
 
2302
 
 
2303
    _fmt = ("The URL for bug tracker \"%(abbreviation)s\" doesn't "
 
2304
            "contain {id}: %(url)s")
 
2305
 
 
2306
    def __init__(self, abbreviation, url):
 
2307
        self.abbreviation = abbreviation
 
2308
        self.url = url
 
2309
 
 
2310
 
2301
2311
class UnknownBugTrackerAbbreviation(BzrError):
2302
2312
 
2303
2313
    _fmt = ("Cannot find registered bug tracker called %(abbreviation)s "