Fixed paren in docstring

This commit is contained in:
Armin Ronacher 2010-07-17 13:10:50 +02:00
parent 6fc1492357
commit 90b8df3e4c

View file

@ -124,7 +124,7 @@ def make_response(*args):
view function. This for example creates a response with a 404 error
code::
response = make_response(render_template('not_found.html', 404))
response = make_response(render_template('not_found.html'), 404)
Internally this function does the following things: