This commit is contained in:
Julien Palard 2023-04-16 23:25:15 +02:00
parent 2e82b9d25e
commit 27b1dce607
Signed by: mdk
GPG Key ID: 0EFC1AC1006886F8
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ def sapin(fir_width):
def slash():
try:
fir_width = int(request.args.get("n"))
except TypeError:
except (TypeError, ValueError):
return (
"Give an `n` query string as an integer, like <a href='/?n=10'>/?n=10</a>."
)