From 5addabfbddbb0f620d81adc7bcafbf8bd5f12a3e Mon Sep 17 00:00:00 2001 From: Zachary Wright Heller Date: Tue, 24 Dec 2013 20:12:34 -0800 Subject: [PATCH] Fix typo in helpers.py --- flask/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/helpers.py b/flask/helpers.py index e59f7d3c..bc09bf3f 100644 --- a/flask/helpers.py +++ b/flask/helpers.py @@ -359,7 +359,7 @@ def flash(message, category='message'): # session.setdefault('_flashes', []).append((category, message)) # # This assumed that changes made to mutable structures in the session are - # are always in sync with the sess on object, which is not true for session + # are always in sync with the session object, which is not true for session # implementations that use external storage for keeping their keys/values. flashes = session.get('_flashes', []) flashes.append((category, message))