Minor docs fix.

This commit is contained in:
Paul McMillan 2012-04-10 13:14:38 -07:00
parent 989aabbe32
commit acb61ae57b

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'))