From 6364ce646e06d1168b8b96f27c8a7df2e2f0f23b Mon Sep 17 00:00:00 2001 From: JuPing Date: Mon, 12 Oct 2015 17:21:08 +0800 Subject: [PATCH] Fix the bug of "Spelling error of a word" The word "occured" should be spelled as "occurred". So it is changed. Change-Id: Ice5212dc8565edb0c5b5c55f979b27440eeeb9aa Closes-Bug: #1505043 --- neutron/pecan_wsgi/hooks/translation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/pecan_wsgi/hooks/translation.py b/neutron/pecan_wsgi/hooks/translation.py index 78b2cba54..d3c5f15fb 100644 --- a/neutron/pecan_wsgi/hooks/translation.py +++ b/neutron/pecan_wsgi/hooks/translation.py @@ -35,4 +35,4 @@ class ExceptionTranslationHook(hooks.PecanHook): # hide message from user in case it contained sensitive details LOG.exception(_("An unexpected exception was caught: %s") % e) raise webob.exc.HTTPInternalServerError( - _("An unexpected internal error occured.")) + _("An unexpected internal error occurred.")) -- 2.45.2