From 42c28c3758fc1612a5a1e89a36092580344c4578 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Mon, 21 Apr 2014 15:58:27 +0200 Subject: [PATCH] Fixed intention in flask init --- flask/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flask/__init__.py b/flask/__init__.py index bf4774dc..f1560879 100644 --- a/flask/__init__.py +++ b/flask/__init__.py @@ -21,8 +21,8 @@ from jinja2 import Markup, escape from .app import Flask, Request, Response from .config import Config from .helpers import url_for, flash, send_file, send_from_directory, \ - get_flashed_messages, get_template_attribute, make_response, safe_join, \ - stream_with_context + get_flashed_messages, get_template_attribute, make_response, safe_join, \ + stream_with_context from .globals import current_app, g, request, session, _request_ctx_stack, \ _app_ctx_stack from .ctx import has_request_context, has_app_context, \