Reformat pages names to put year first

This commit is contained in:
Matthias Portzel 2022-09-01 18:21:05 -04:00
parent 1d89272d99
commit f1217d779e
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ def season_year_for_date(date):
def formatted_name_for_season_year(current_season, current_year):
return ["Winter", "Spring", "Summer", "Fall"][current_season] + " " + str(current_year)
return str(current_year) + " - " + ["Winter", "Spring", "Summer", "Fall"][current_season]
def get_page_slug(thought):