From 851ca95778ded1b4b97fa92ddd45ab5b43fdcd90 Mon Sep 17 00:00:00 2001 From: Grey Li Date: Sat, 23 Sep 2017 22:26:48 +0800 Subject: [PATCH] Fix typo in comment --- flask/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/helpers.py b/flask/helpers.py index 5adb0e2a..efec454c 100644 --- a/flask/helpers.py +++ b/flask/helpers.py @@ -383,7 +383,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 session object, which is not true for session + # 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))