From: JuPing Date: Mon, 12 Oct 2015 09:21:08 +0000 (+0800) Subject: Fix the bug of "Spelling error of a word" X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=6364ce646e06d1168b8b96f27c8a7df2e2f0f23b;p=openstack-build%2Fneutron-build.git 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 --- 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."))