Fix another bug

This commit is contained in:
Gregory Trullemans 2022-10-07 13:26:05 +02:00
parent c3cdf9c24e
commit bf06a361f9
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ def average_jump_chrono_details_for_week_of_season(request, gymnast_id, routine_
season = str(today.year) + "-" + str(today.year + 1) season = str(today.year) + "-" + str(today.year + 1)
date_begin, date_end = from_week_number_to_date(season, week_number) date_begin, date_end = from_week_number_to_date(season, week_number)
return average_jump_chrono_details_between_two_date(request, gymnast_id, routine_type, date_begin, date_end) return average_jump_chrono_details_between_two_date(request, gymnast_id, routine_type, date_begin.strftime('%Y-%m-%d'), date_end.strftime('%Y-%m-%d'))
@login_required @login_required