Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorPhilipp Schaffrath <philipp.schaffrath@gmail.com>2021-01-30 23:28:35 +0100
committerGitHub <noreply@github.com>2021-01-30 23:28:35 +0100
commit15714ebb86650585a9bd1d0eaf30941579e3020f (patch)
tree76ec7a2d068b7b44df6b88ac746c96e5e083b122 /archinstall
parent534669203a1f1fb7f072e12c3ff2b5be546a91ef (diff)
don't pass encoding in locale argument, it is appended separately in set_locale
Diffstat (limited to 'archinstall')
-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 fb9e9724..4fb6b706 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -284,7 +284,7 @@ class Installer():
#sys_command(f'/usr/bin/arch-chroot {self.mountpoint} ln -s /usr/share/zoneinfo/{localtime} /etc/localtime')
#sys_command('/usr/bin/arch-chroot /mnt hwclock --hctosys --localtime')
self.set_hostname()
- self.set_locale('en_US.UTF-8')
+ self.set_locale('en_US')
# TODO: Use python functions for this
sys_command(f'/usr/bin/arch-chroot {self.mountpoint} chmod 700 /root')