From 77a37a9988f8363237c68d4a2e344002a8c41c05 Mon Sep 17 00:00:00 2001 From: Gaspard d'Hautefeuille Date: Wed, 16 Nov 2022 17:25:13 +0000 Subject: [PATCH] Fix typo --- docs/appcontext.rst | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docs/appcontext.rst b/docs/appcontext.rst index 16d1e6ea..5d420e0f 100644 --- a/docs/appcontext.rst +++ b/docs/appcontext.rst @@ -66,11 +66,7 @@ Flask automatically *pushes* an app context when handling a request. Flask canno first request, any changes will not be applied consistently. Make sure all imports, decorators, functions, etc. needed to set up the application are done before running it. - - This typically means that you attempted to use functionality that - needed to interface with the current application object in some way. - To solve this, set up an application context with app.app_context(). - + Manually Push a Context -----------------------