summaryrefslogtreecommitdiffstats
path: root/ipalib/errors.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2009-05-21 22:40:05 -0400
committerRob Crittenden <rcritten@redhat.com>2009-05-21 22:43:07 -0400
commitcac8ebb8667ece0a6066fad8cd757c2be65c1856 (patch)
treeaa9c8fb0617daced7df40dd2f99b13ff5dbf9af6 /ipalib/errors.py
parentb1e1188cccd671e20550c8c2f55115d0896d037a (diff)
downloadfreeipa-cac8ebb8667ece0a6066fad8cd757c2be65c1856.tar.gz
freeipa-cac8ebb8667ece0a6066fad8cd757c2be65c1856.tar.xz
freeipa-cac8ebb8667ece0a6066fad8cd757c2be65c1856.zip
Fix typo, occured -> occurred
Diffstat (limited to 'ipalib/errors.py')
-rw-r--r--ipalib/errors.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ipalib/errors.py b/ipalib/errors.py
index 3e5053c6d..e3dfc14d2 100644
--- a/ipalib/errors.py
+++ b/ipalib/errors.py
@@ -319,11 +319,11 @@ class InternalError(PublicError):
>>> raise InternalError()
Traceback (most recent call last):
...
- InternalError: an internal error has occured
+ InternalError: an internal error has occurred
"""
errno = 903
- format = _('an internal error has occured')
+ format = _('an internal error has occurred')
def __init__(self, message=None):
"""
@@ -341,11 +341,11 @@ class ServerInternalError(PublicError):
>>> raise ServerInternalError(server='https://localhost')
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
- 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):