From 54b4755df9cec16db2c2141cedffc10e4509fb88 Mon Sep 17 00:00:00 2001 From: Arno Wunderlich <arno.a.wunderlich@student.jyu.fi> Date: Wed, 22 Feb 2023 09:44:53 +0000 Subject: [PATCH] fix app name --- src/tjts5901/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tjts5901/app.py b/src/tjts5901/app.py index 5f19190d..e7297a54 100644 --- a/src/tjts5901/app.py +++ b/src/tjts5901/app.py @@ -87,7 +87,7 @@ app = create_app() # a simple page that says hello -@flask_app.route('/hello') +@app.route('/hello') def hello(): return _('Hello, World!') -- GitLab