Skip to content

Commit f0f5653

Browse files
authored
Merge pull request #44 from bqth29/BusyBeaver-42-patch-1
explicitly ask for utf-8 in locale
2 parents 45be0b3 + d4bdf4e commit f0f5653

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/metadata_checker/metadata_checker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ def check_license_date(
320320

321321

322322
def get_month_abbreviation(month_number: int) -> str:
323-
with calendar.different_locale(("en_US", None)) as encoding:
323+
with calendar.different_locale(("en_US", "utf-8")) as encoding:
324324
abbreviation = calendar.month_abbr[month_number]
325325
if encoding is not None:
326326
abbreviation = abbreviation.decode(encoding)

0 commit comments

Comments
 (0)