index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-09-07 15:41:19 +0200 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-09-07 15:41:19 +0200 |
commit | 9b65bf4bbb2f92a75905bc02f9a73d2dac5b7d89 (patch) | |
tree | 591863a0fbb2fb4df0c5e5e04294e2c6975cab4c /archinstall/lib/locale_helpers.py | |
parent | 911d876cb64b2a543418110045df0ea41b5a6a16 (diff) |
-rw-r--r-- | archinstall/lib/locale_helpers.py | 4 |
diff --git a/archinstall/lib/locale_helpers.py b/archinstall/lib/locale_helpers.py index 2917a17d..523a23d5 100644 --- a/archinstall/lib/locale_helpers.py +++ b/archinstall/lib/locale_helpers.py @@ -7,7 +7,7 @@ def list_keyboard_languages(layout='qwerty'): locale_dir = '/usr/share/kbd/keymaps/' if not os.path.isdir(locale_dir): - raise RequirementError(f'Directory containing locales does not excist: {locale_dir}') + raise RequirementError(f'Directory containing locales does not exist: {locale_dir}') for root, folders, files in os.walk(locale_dir): # Since qwerty is under /i386/ but other layouts are @@ -26,4 +26,4 @@ def search_keyboard_layout(filter, layout='qwerty'): yield language def set_keyboard_language(locale): - return os.system(f'loadkeys {locale}') == 0
\ No newline at end of file + return os.system(f'loadkeys {locale}') == 0 |