Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ def ensure_us_english() -> None:
else:
language = os.environ["LANG"]

if not language.startswith("en_US"):
if not language.startswith("en_"):
raise RuntimeError(
f"The Wifi driver parses CLI responses and only supports en_US where your language is {language}"
f"The Wifi driver parses CLI responses and only supports en_* where your language is {language}"
)


Expand Down