Skip to content

Commit

Permalink
Merge pull request #44 from bqth29/BusyBeaver-42-patch-1
Browse files Browse the repository at this point in the history
explicitly ask for utf-8 in locale
  • Loading branch information
bqth29 authored Nov 23, 2023
2 parents 45be0b3 + d4bdf4e commit f0f5653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/metadata_checker/metadata_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ def check_license_date(


def get_month_abbreviation(month_number: int) -> str:
with calendar.different_locale(("en_US", None)) as encoding:
with calendar.different_locale(("en_US", "utf-8")) as encoding:
abbreviation = calendar.month_abbr[month_number]
if encoding is not None:
abbreviation = abbreviation.decode(encoding)
Expand Down

0 comments on commit f0f5653

Please sign in to comment.