]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Fix webob.exc.HTTPForbidden parameter miss
authorHaiwei Xu <xu-haiwei@mxw.nes.nec.co.jp>
Mon, 24 Feb 2014 13:12:59 +0000 (22:12 +0900)
committerThomas Goirand <thomas@goirand.fr>
Thu, 13 Mar 2014 07:20:30 +0000 (15:20 +0800)
HTTPForbidden should use the parameter 'explanation'
instead of 'detail'.
This patch fixes this bug.

Change-Id: I4c66697daf0ce9e00c8820311dc7141eacd7e733
Closes-Bug: #1283872

neutron/wsgi.py

index 9cae97300909fe5df29b392620abeb630ef0b1e4..5cd6fab3c392767447c80594d5359668e161ff4d 100644 (file)
@@ -906,7 +906,7 @@ class Application(object):
           res = 'message\n'
 
           # Option 2: a nicely formatted HTTP exception page
-          res = exc.HTTPForbidden(detail='Nice try')
+          res = exc.HTTPForbidden(explanation='Nice try')
 
           # Option 3: a webob Response object (in case you need to play with
           # headers, or you want to be treated like an iterable, or or or)