From a14ce2fcb0f9a97ba1b3c7b1d5d8bd0d9db9c398 Mon Sep 17 00:00:00 2001 From: Eric Boucher Date: Fri, 12 Jun 2020 12:28:28 -0700 Subject: [PATCH] Update Python version in example welcome message Update Python version to 3.8 for the welcome message in `example-flask-python3.8/app/main.py` --- example-flask-python3.8/app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example-flask-python3.8/app/main.py b/example-flask-python3.8/app/main.py index f6e6e755..6d4ca0f2 100644 --- a/example-flask-python3.8/app/main.py +++ b/example-flask-python3.8/app/main.py @@ -6,7 +6,7 @@ @app.route("/") def hello(): return "Hello World from Flask in a uWSGI Nginx Docker container with \ - Python 3.7 (from the example template)" + Python 3.8 (from the example template)" if __name__ == "__main__":