Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-04-07 07:22:46 +0000
committerGitHub <noreply@github.com>2021-04-07 07:22:46 +0000
commit1d60e307e81a99ebd6cbfe26a92e5dfa96a8870a (patch)
treeaa1f97a8c96e265810e3a13ec8c2dea7305d5756
parente103f2bc02aa090141d844894e36af6ec2a9a77b (diff)
parent275e60e1ddb5da281aab394492c68bed8d5abdcb (diff)
Merge pull request #215 from insanemal/newline-fix
Fix newline issue on fstab writes
-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 8673bbee..1d277bc6 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -147,7 +147,7 @@ class Installer():
self.log(f"Updating {self.mountpoint}/etc/fstab", level=LOG_LEVELS.Info)
fstab = sys_command(f'/usr/bin/genfstab {flags} {self.mountpoint}').trace_log
- with open(f"{self.mountpoint}/etc/fstab", 'ab') as fstab_fh:
+ with open(f"{self.mountpoint}/etc/fstab", 'ab',newline='\n') as fstab_fh:
fstab_fh.write(fstab)
if not os.path.isfile(f'{self.mountpoint}/etc/fstab'):