Browse Source

Merge pull request #531 from bev-a-tron/master

Fixes #519 by adding return statement
pull/530/merge
Kenneth Reitz 13 years ago
parent
commit
7bc6eead47
  1. 5
      docs/quickstart.rst

5
docs/quickstart.rst

@ -514,8 +514,9 @@ attributes mentioned above::
return log_the_user_in(request.form['username'])
else:
error = 'Invalid username/password'
# this is executed if the request method was GET or the
# credentials were invalid
# the code below this is executed if the request method
# was GET or the credentials were invalid
return render_template('login.html', error=error)
What happens if the key does not exist in the `form` attribute? In that
case a special :exc:`KeyError` is raised. You can catch it like a

Loading…
Cancel
Save