diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-09 08:38:48 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-09 08:38:48 +0000 |
commit | db7eb58aff5b7f245e14460a48a48ffc9a4037c8 (patch) | |
tree | b5a3bb5c76aebfcaf260bd7ab5afd34cf92c1178 | |
parent | 801b1ddcdb04721b290bc600b55f65ca3d8b5743 (diff) |
Tue, Jul 9, 2024, 1:38 AM -07:00
-rw-r--r-- | wk9/lect/hello/app.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wk9/lect/hello/app.py b/wk9/lect/hello/app.py index bb88884..de6ec44 100644 --- a/wk9/lect/hello/app.py +++ b/wk9/lect/hello/app.py @@ -4,4 +4,4 @@ app = Flask(__name__) @app.route("/") def index(): - return "hello, world" + return render_template("index.html") |