Initial commit

This commit is contained in:
Badhreesh 2025-05-21 16:54:01 +02:00 committed by GitHub
parent a5f9742398
commit ecfbc325d3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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)}!"