From e1dce5c39ac093915a34bac99c37402245fd52f4 Mon Sep 17 00:00:00 2001 From: Mindiell <61205582+Mindiell@users.noreply.github.com> Date: Wed, 8 Sep 2021 10:00:36 +0200 Subject: [PATCH] Fix typo in docs (#4261) --- docs/deploying/uwsgi.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deploying/uwsgi.rst b/docs/deploying/uwsgi.rst index 5b6fedad..b6958dc0 100644 --- a/docs/deploying/uwsgi.rst +++ b/docs/deploying/uwsgi.rst @@ -37,7 +37,7 @@ If your application is accessible at root level, you can use a single ``/`` instead of ``/yourapplication``. ``myapp`` refers to the name of the file of your flask application (without extension) or the module which provides ``app``. ``app`` is the callable inside of your application (usually -the line reads ``app = Flask(__name__)``. +the line reads ``app = Flask(__name__)``). If you want to deploy your flask application inside of a virtual environment, you need to also add ``--virtualenv /path/to/virtual/environment``. You might