From 0ad9b4ba07f5754c1ae6b514564fd9f7f516be56 Mon Sep 17 00:00:00 2001 From: Pablo Date: Thu, 20 Dec 2018 17:46:55 +0100 Subject: [PATCH] [FIX] wrong variable name children's' --- hotel_calendar/models/inherited_hotel_reservation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hotel_calendar/models/inherited_hotel_reservation.py b/hotel_calendar/models/inherited_hotel_reservation.py index 26552b45c..1c09f9f1b 100644 --- a/hotel_calendar/models/inherited_hotel_reservation.py +++ b/hotel_calendar/models/inherited_hotel_reservation.py @@ -115,7 +115,7 @@ class HotelReservation(models.Model): 'email': reserv.email or _('Email not provided'), 'room_type': reserv.room_type_id.name, 'adults': reserv.adults, - 'childrens': reserv.children, + 'children': reserv.children, 'checkin': reserv.checkin, 'checkout': reserv.checkout, 'arrival_hour': reserv.arrival_hour,