From 15ed7570825296666966b3f8a0057c0aa08c4a4b Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Sun, 15 May 2022 21:59:35 +0200 Subject: [PATCH] Adding missing import --- archinstall/lib/installer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index dd793055..a86347e5 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -1056,6 +1056,8 @@ class Installer: return InstallationFile(self, filename, owner) def set_keyboard_language(self, language: str) -> bool: + from .systemd import localectl_status + log(f"Setting keyboard language to {language}", level=logging.INFO) if len(language.strip()): if not verify_keyboard_layout(language):