Skip to content

Commit a3fc658

Browse files
authored
Fix 3350 (#3358)
1 parent 00e87eb commit a3fc658

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

archinstall/lib/models/locale.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ class LocaleConfiguration:
2121
def default() -> 'LocaleConfiguration':
2222
layout = get_kb_layout()
2323
if layout == "":
24-
return LocaleConfiguration('us', 'en_US', 'UTF-8')
25-
return LocaleConfiguration(layout, 'en_US', 'UTF-8')
24+
layout = 'us'
25+
return LocaleConfiguration(layout, 'en_US.UTF-8', 'UTF-8')
2626

2727
def json(self) -> dict[str, str]:
2828
return {

0 commit comments

Comments
 (0)