Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-04-12 11:54:34 +0000
committerGitHub <noreply@github.com>2021-04-12 11:54:34 +0000
commit897b67f7518b5fc0bac1f8a3fd02dc2d1266aea7 (patch)
tree8af1a4ac23bd36e5adb6d10b37d5e310eb0c0767 /archinstall
parentb4d400bff80969485b2056013735735f4caa7871 (diff)
parentde693b70807bd5bc35be9e446ac9a8d9f3121ecd (diff)
Merge pull request #281 from dylanmtaylor/patch-2
If user does not change keyboard language, log it.
Diffstat (limited to 'archinstall')
-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..7aa64816 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).', fg="yellow", level=LOG_LEVELS.Info)
return True