From 5bfe236fb531045497396bc85ee5026c6c9c68eb Mon Sep 17 00:00:00 2001 From: ongopongo <53710895+ongopongo@users.noreply.github.com> Date: Wed, 26 Aug 2020 09:20:21 -0700 Subject: [PATCH] fix typo in flask shell help (#3744) --- src/flask/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flask/cli.py b/src/flask/cli.py index e73f7b78..f66b2393 100644 --- a/src/flask/cli.py +++ b/src/flask/cli.py @@ -859,7 +859,7 @@ def run_command( def shell_command(): """Run an interactive Python shell in the context of a given Flask application. The application will populate the default - namespace of this shell according to it's configuration. + namespace of this shell according to its configuration. This is useful for executing small snippets of management code without having to manually configure the application.