From 1681204a3acec0ddc0ffc3b960b2c39922515fcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9D=9E=E6=B3=95=E6=93=8D=E4=BD=9C?= Date: Mon, 22 Aug 2022 16:59:53 +0800 Subject: [PATCH] fix a misspell --- 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, )