Fix kids -> children

This commit is contained in:
Remi Rampin 2022-05-22 00:57:14 -04:00
parent f31b271e31
commit 9f66c76a9e
1 changed files with 3 additions and 3 deletions

View File

@ -51,15 +51,15 @@ def rsvp(code):
# Lookup guests from code
adults = None
kids = None
children = None
try:
name, adults, kids = get_name_and_replies(code)
name, adults, children = get_name_and_replies(code)
except ValueError:
error = "Code invalide"
return render_template(
'rsvp.html',
adults=adults,
kids=kids,
children=children,
error=error,
)