Initial commit

This commit is contained in:
Badhreesh 2025-05-21 16:54:01 +02:00
parent 32d9755b6b
commit 73bb4ab39b

View file

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