From cac8ebb8667ece0a6066fad8cd757c2be65c1856 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Thu, 21 May 2009 22:40:05 -0400 Subject: Fix typo, occured -> occurred --- ipalib/errors.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ipalib/errors.py') diff --git a/ipalib/errors.py b/ipalib/errors.py index 3e5053c6..e3dfc14d 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): -- cgit