Added a docstring to mgoblin_error_middleware
This commit is contained in:
parent
9ac7371712
commit
ae72c63814
@ -49,5 +49,12 @@ MGOBLIN_ERROR_MESSAGE = """\
|
|||||||
|
|
||||||
|
|
||||||
def mgoblin_error_middleware(app, global_conf, **kw):
|
def mgoblin_error_middleware(app, global_conf, **kw):
|
||||||
|
"""
|
||||||
|
MediaGoblin wrapped error middleware.
|
||||||
|
|
||||||
|
This is really just wrapping the error middleware from Paste.
|
||||||
|
It should take all of Paste's default options, so see:
|
||||||
|
http://pythonpaste.org/modules/exceptions.html
|
||||||
|
"""
|
||||||
kw['error_message'] = MGOBLIN_ERROR_MESSAGE
|
kw['error_message'] = MGOBLIN_ERROR_MESSAGE
|
||||||
return make_error_middleware(app, global_conf, **kw)
|
return make_error_middleware(app, global_conf, **kw)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user