Merge pull request #486 from PaulMcMillan/docs_fix

Minor docs fix.
This commit is contained in:
Ron DuPlain 2012-04-10 13:16:17 -07:00
commit 1a19ddc55c

View file

@ -744,7 +744,7 @@ sessions work::
@app.route('/logout')
def logout():
# remove the username from the session if its there
# remove the username from the session if it's there
session.pop('username', None)
return redirect(url_for('index'))