/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:
906
906
        BzrError.__init__(self, message)
907
907
 
908
908
 
 
909
class NoEmailInUsername(BzrNewError):
 
910
    """%(username)r does not seem to contain a reasonable email address"""
 
911
 
 
912
    def __init__(self, username):
 
913
        BzrNewError.__init__(self)
 
914
        self.username = username
 
915
 
 
916
 
909
917
class SigningFailed(BzrError):
910
918
    def __init__(self, command_line):
911
919
        BzrError.__init__(self, "Failed to gpg sign data with command '%s'"