Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorJakobDev <jakobdev@gmx.de>2021-04-12 15:13:49 +0200
committerGitHub <noreply@github.com>2021-04-12 15:13:49 +0200
commitfe2c3cc14deb80d1e4fa9a4c57b98f5812c18aea (patch)
tree02b8de67f095cf0cc5509b1e85f0b3e9d32d8efb /archinstall
parent27e7c01e5584cc9b81f941345e1382dcd5abaade (diff)
Replace os.system with subprocess.call
Diffstat (limited to 'archinstall')
-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