From 9f66c76a9e3f5cd3cd1136294892e5665dfe3a60 Mon Sep 17 00:00:00 2001 From: Remi Rampin Date: Sun, 22 May 2022 00:57:14 -0400 Subject: [PATCH] Fix kids -> children --- france/france_rsvp/web.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/france/france_rsvp/web.py b/france/france_rsvp/web.py index 7c23653..a2f4110 100644 --- a/france/france_rsvp/web.py +++ b/france/france_rsvp/web.py @@ -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, )