mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix typo, occured -> occurred
This commit is contained in:
parent
b1e1188ccc
commit
cac8ebb866
@ -319,11 +319,11 @@ class InternalError(PublicError):
|
|||||||
>>> raise InternalError()
|
>>> raise InternalError()
|
||||||
Traceback (most recent call last):
|
Traceback (most recent call last):
|
||||||
...
|
...
|
||||||
InternalError: an internal error has occured
|
InternalError: an internal error has occurred
|
||||||
"""
|
"""
|
||||||
|
|
||||||
errno = 903
|
errno = 903
|
||||||
format = _('an internal error has occured')
|
format = _('an internal error has occurred')
|
||||||
|
|
||||||
def __init__(self, message=None):
|
def __init__(self, message=None):
|
||||||
"""
|
"""
|
||||||
@ -341,11 +341,11 @@ class ServerInternalError(PublicError):
|
|||||||
>>> raise ServerInternalError(server='https://localhost')
|
>>> raise ServerInternalError(server='https://localhost')
|
||||||
Traceback (most recent call last):
|
Traceback (most recent call last):
|
||||||
...
|
...
|
||||||
ServerInternalError: an internal error has occured on server at 'https://localhost'
|
ServerInternalError: an internal error has occurred on server at 'https://localhost'
|
||||||
"""
|
"""
|
||||||
|
|
||||||
errno = 904
|
errno = 904
|
||||||
format = _('an internal error has occured on server at %(server)r')
|
format = _('an internal error has occurred on server at %(server)r')
|
||||||
|
|
||||||
|
|
||||||
class CommandError(PublicError):
|
class CommandError(PublicError):
|
||||||
|
Loading…
Reference in New Issue
Block a user