index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-04-13 07:08:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-13 07:08:29 +0000 |
commit | c2958aba16cc93f3f017aa34e92bc939ef53252d (patch) | |
tree | d1665bdf8e444d36e2258a4a58d7ce6883a67bd4 | |
parent | 47dbda144282c2dd6ec6c8f319a37ebfc6a729b6 (diff) | |
parent | fe2c3cc14deb80d1e4fa9a4c57b98f5812c18aea (diff) |
-rw-r--r-- | archinstall/lib/locale_helpers.py | 3 |
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 |