Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/locale_helpers.py
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-04-13 19:46:53 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-04-13 19:46:53 -0400
commite18b6d83d7c0c05cdc4e12a461a356e8a330c195 (patch)
tree9eac6d6919c7df1241753d1adcd286b2239250b1 /archinstall/lib/locale_helpers.py
parent49ca26479095117f202bd7a3f95e8b93da02760e (diff)
parent2433a9ee76802fd2e8e71fcb31b01e8406d7aa48 (diff)
Merge branch 'master' into patch-4
Diffstat (limited to 'archinstall/lib/locale_helpers.py')
-rw-r--r--archinstall/lib/locale_helpers.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/archinstall/lib/locale_helpers.py b/archinstall/lib/locale_helpers.py
index 523a23d5..82964dc9 100644
--- a/archinstall/lib/locale_helpers.py
+++ b/archinstall/lib/locale_helpers.py
@@ -1,3 +1,4 @@
+import subprocess
import os
from .exceptions import *
@@ -26,4 +27,4 @@ def search_keyboard_layout(filter, layout='qwerty'):
yield language
def set_keyboard_language(locale):
- return os.system(f'loadkeys {locale}') == 0
+ return subprocess.call(['loadkeys',locale]) == 0