From 00b07c863ec147256b68f71c3fe9b6b2f9dbe6bc Mon Sep 17 00:00:00 2001 From: Philipp Rohde Date: Tue, 9 Aug 2022 09:48:02 +0200 Subject: [PATCH] fix typo fixes #4756 --- src/flask/globals.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/flask/globals.py b/src/flask/globals.py index b230ef7e..254da42b 100644 --- a/src/flask/globals.py +++ b/src/flask/globals.py @@ -88,7 +88,7 @@ def __getattr__(name: str) -> t.Any: import warnings warnings.warn( - "'_app_ctx_stack' is deprecated and will be remoevd in Flask 2.3.", + "'_app_ctx_stack' is deprecated and will be removed in Flask 2.3.", DeprecationWarning, stacklevel=2, ) @@ -98,7 +98,7 @@ def __getattr__(name: str) -> t.Any: import warnings warnings.warn( - "'_request_ctx_stack' is deprecated and will be remoevd in Flask 2.3.", + "'_request_ctx_stack' is deprecated and will be removed in Flask 2.3.", DeprecationWarning, stacklevel=2, )