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:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-09-01 10:36:47 +0200
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-09-01 10:36:47 +0200
commitd765763e813579a09c9ea00c5cbf747ca8b32f04 (patch)
tree9423f9667f322eb4863f0dc9fc3d3fcfa83b21eb /archinstall/lib/installer.py
parent677533f76521eeb9441301c4c0691270f872fe5b (diff)
Forgot self in a parameter
Diffstat (limited to 'archinstall/lib/installer.py')
-rw-r--r--archinstall/lib/installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index bd860186..3ab0adc2 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -242,7 +242,7 @@ class Installer():
o = b''.join(sys_command(f"/usr/bin/arch-chroot {self.mountpoint} sh -c \"echo '{user}:{password}' | chpasswd\""))
pass
- def set_keyboard_language(language):
+ def set_keyboard_language(self, language):
with open(f'{self.mountpoint}/etc/vconsole.conf', 'w') as vconsole:
vconsole.write(f'KEYMAP={language}\n')
vconsole.write(f'FONT=lat9w-16\n')