From 09a6a93700d52c54ee346759b65a7c1384efaf53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Ma=C5=82ecki?= Date: Mon, 12 Jun 2023 14:37:31 +0200 Subject: [PATCH] Update quickstart.rst Fixed: ``` flask --app hello run Usage: flask run [OPTIONS] Try 'flask run --help' for help. Error: Could not import 'hello'. ``` --- docs/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 0d7ad3f6..49d77c55 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -45,7 +45,7 @@ is with the ``--app`` option. .. code-block:: text - $ flask --app hello run + $ flask --app app run * Serving Flask app 'hello' * Running on http://127.0.0.1:5000 (Press CTRL+C to quit)