diff -r 4d6130d91e56 -r ae2767918faa iro/error.py --- a/iro/error.py Sun Feb 26 17:48:28 2012 +0100 +++ b/iro/error.py Sun Feb 26 18:44:52 2012 +0100 @@ -13,15 +13,15 @@ class UserNotFound(InterfaceException): def __init__(self): - InterfaceException.__init__(self, 901, u"Der API-Key ist ungültig.") + InterfaceException.__init__(self, 901, "API-Key is unknown.") class JobNotFound(InterfaceException): def __init__(self): - InterfaceException.__init__(self, 902, u"Die Jobid ist ungültig.") + InterfaceException.__init__(self, 902, "Jobid is unknown.") class ExternalException(InterfaceException): def __init__(self): - InterfaceException.__init__(self, 950, "Fehler in externer API.") + InterfaceException.__init__(self, 950, "Error in external API.") class ValidateException(Exception): def __init__(self, code=700, field=None, msg=None):