From c3cfa22a9fa504af1a5b7bf8f7831cdc8c4012dc Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 5 Jul 2022 19:06:04 +0200 Subject: [PATCH] bugfix --- .../commands/teleforma-publish-notify-conferences.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teleforma/management/commands/teleforma-publish-notify-conferences.py b/teleforma/management/commands/teleforma-publish-notify-conferences.py index 8d404fcc..c1b803ff 100644 --- a/teleforma/management/commands/teleforma-publish-notify-conferences.py +++ b/teleforma/management/commands/teleforma-publish-notify-conferences.py @@ -57,11 +57,11 @@ class Command(BaseCommand): period_name = options['period'] period = Period.objects.get(name=period_name) - minute_low_range = options['minute-low-range'] + minute_low_range = options['minute_low_range'] if not minute_low_range: minute_low_range = MINUTES_LOW_RANGE - minute_high_range = options['minute-high-range'] + minute_high_range = options['minute_high_range'] if not minute_high_range: minute_high_range = MINUTES_HIGH_RANGE -- 2.39.5