Initial commit

This commit is contained in:
Badhreesh 2025-05-21 20:35:11 +02:00
parent a42c4d54a3
commit 0f2004c9e6
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ how you're using untrusted data.
from markupsafe import escape from markupsafe import escape
@app.route("/<name>") @app.route("/<path:name>")
def hello(name): def hello(name):
return f"Hello, {escape(name)}!" return f"Hello, {escape(name)}!"