diff --git a/thoughts/pagination.py b/thoughts/pagination.py index b8dcaa3..f74138d 100644 --- a/thoughts/pagination.py +++ b/thoughts/pagination.py @@ -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):