Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-09-07 15:41:19 +0200
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-09-07 15:41:19 +0200
commit9b65bf4bbb2f92a75905bc02f9a73d2dac5b7d89 (patch)
tree591863a0fbb2fb4df0c5e5e04294e2c6975cab4c /archinstall/lib
parent911d876cb64b2a543418110045df0ea41b5a6a16 (diff)
Spelling error in locale helpers.
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