diff options
| -rw-r--r-- | bot/exts/evergreen/branding.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/bot/exts/evergreen/branding.py b/bot/exts/evergreen/branding.py index 9761811a..8e96ad52 100644 --- a/bot/exts/evergreen/branding.py +++ b/bot/exts/evergreen/branding.py @@ -219,7 +219,7 @@ class BrandingManager(commands.Cog):          # If we're in a non-evergreen season, also show active months          if self.current_season is not SeasonBase: -            active_months = ", ".join(m.name for m in self.current_season.months) +            active_months = ", ".join(m.name.title() for m in self.current_season.months)              title = f"{self.current_season.season_name} ({active_months})"          else:              title = self.current_season.season_name @@ -407,7 +407,7 @@ class BrandingManager(commands.Cog):              if season is SeasonBase:                  active_when = "always"              else: -                months = ", ".join(m.name for m in season.months) +                months = ", ".join(m.name.title() for m in season.months)                  active_when = f"in {months}"              description = ( | 
