diff --git a/smash/web/management/commands/holidays.py b/smash/web/management/commands/holidays.py index 9ad587a79c97c0555a61a90cf3f4486d1792a29c..755d15cefa1aba58c2b0acfd3c5d5b4b1af52ab5 100644 --- a/smash/web/management/commands/holidays.py +++ b/smash/web/management/commands/holidays.py @@ -62,7 +62,7 @@ class Command(BaseCommand): holiday.comment = comment holiday.visit_id = None holiday.save() - appointment_type_other = AppointmentType.objects.get_or_create(code='OTHER', defaults={default_duration: 10}) + appointment_type_other = AppointmentType.objects.get_or_create(code='OTHER', defaults={default_duration: 60}) link = AppointmentTypeLink(appointment=holiday, appointment_type=appointment_type_other) link.save()