From 158400a31d6d38c21d4692ef0e7dde5ef133804f Mon Sep 17 00:00:00 2001 From: JuPing Date: Wed, 30 Sep 2015 23:16:15 +0800 Subject: [PATCH] Fix the bug of "Error spelling of 'occured'" The word "occured" should be spelled as "occurred". So it is changed. Change-Id: Ie10c31030f64df6d78f1292bc7730c7469f3972f Closes-Bug: #1501197 --- sahara/exceptions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sahara/exceptions.py b/sahara/exceptions.py index 575d7acb..fc5d4246 100644 --- a/sahara/exceptions.py +++ b/sahara/exceptions.py @@ -173,7 +173,7 @@ class SwiftClientException(SaharaException): ''' code = "SWIFT_CLIENT_EXCEPTION" - message = _("An error has occured while performing a request to Swift") + message = _("An error has occurred while performing a request to Swift") class DataTooBigException(SaharaException): @@ -252,7 +252,7 @@ class FrozenClassError(SaharaException): class SystemError(SaharaException): code = "SYSTEM_ERROR" - message = _("System error has occured") + message = _("System error has occurred") class EDPError(SaharaException):