From d4f6734741929f7532c03b00e732bf7db42f7c01 Mon Sep 17 00:00:00 2001 From: Petr Zemek Date: Mon, 27 Oct 2014 11:54:30 +0100 Subject: [PATCH] Remove a redundant "the" in a comment. --- flask/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/helpers.py b/flask/helpers.py index ead20d70..aaed81c4 100644 --- a/flask/helpers.py +++ b/flask/helpers.py @@ -529,7 +529,7 @@ def send_file(filename_or_fp, mimetype=None, as_attachment=False, rv = current_app.response_class(data, mimetype=mimetype, headers=headers, direct_passthrough=True) - # if we know the file modification date, we can store it as the + # if we know the file modification date, we can store it as # the time of the last modification. if mtime is not None: rv.last_modified = int(mtime)