/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

Move InvalidPattern error to breezy.lazy_regex.

This merges https://code.launchpad.net/~jelmer/brz/move-errors-lazy-regex/+merge/327181

Show diffs side-by-side

added added

removed removed

Lines of Context:
3108
3108
        'E.g. brz whoami "Your Name <name@example.com>"')
3109
3109
 
3110
3110
 
3111
 
class InvalidPattern(BzrError):
3112
 
 
3113
 
    _fmt = ('Invalid pattern(s) found. %(msg)s')
3114
 
 
3115
 
    def __init__(self, msg):
3116
 
        self.msg = msg
3117
 
 
3118
 
 
3119
3111
class RecursiveBind(BzrError):
3120
3112
 
3121
3113
    _fmt = ('Branch "%(branch_url)s" appears to be bound to itself. '