Merge branch 'master' of github.com:mitsuhiko/flask

This commit is contained in:
Armin Ronacher 2010-05-26 14:50:20 +02:00
commit 58285b61ff
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ an installation but a clever way to keep things separated.
So let's see how that works!
If you are on OS X or Linux chances are that one of the following two
commands will for for you::
commands will work for you::
$ sudo easy_install virtualenv

View file

@ -654,7 +654,7 @@ sessions work::
session.pop('username', None)
# set the secret key. keep this really secret:
app.secret_key = 'the secret key'
app.secret_key = 'A0Zr98j/3yX R~XHH!jmN]LWX/,?RT'
The here mentioned :func:`~flask.escape` does escaping for you if you are
not using the template engine (like in this example).