Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/installer.py
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-04-11 16:04:03 -0400
committerGitHub <noreply@github.com>2021-04-11 16:04:03 -0400
commit6cc546887d6054c02d4f287f936ba7bf1fc24e04 (patch)
tree1540b127ab21d6cffd7cd406b91a933058ac1ade /archinstall/lib/installer.py
parent6f08ad1d4b333ca12c4d729fbcb029b49097ce7d (diff)
If user does not change keyboard language, log it.
Diffstat (limited to 'archinstall/lib/installer.py')
-rw-r--r--archinstall/lib/installer.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 4ff9e80a..3b218dff 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -449,4 +449,6 @@ class Installer():
with open(f'{self.target}/etc/vconsole.conf', 'w') as vconsole:
vconsole.write(f'KEYMAP={language}\n')
vconsole.write(f'FONT=lat9w-16\n')
+ else:
+ self.log(f'Keyboard language was not changed from default (no language specified).', level=LOG_LEVELS.Info)
return True