Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib
diff options
context:
space:
mode:
Diffstat (limited to 'archinstall/lib')
-rw-r--r--archinstall/lib/locale_helpers.py4
1 files changed, 2 insertions, 2 deletions
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