/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 from bzr.dev, http-smart-server.

Show diffs side-by-side

added added

removed removed

Lines of Context:
908
908
        BzrError.__init__(self, message)
909
909
 
910
910
 
 
911
class NoEmailInUsername(BzrNewError):
 
912
    """%(username)r does not seem to contain a reasonable email address"""
 
913
 
 
914
    def __init__(self, username):
 
915
        BzrNewError.__init__(self)
 
916
        self.username = username
 
917
 
 
918
 
911
919
class SigningFailed(BzrError):
912
920
    def __init__(self, command_line):
913
921
        BzrError.__init__(self, "Failed to gpg sign data with command '%s'"