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.feeds+github@gmail.com>2020-12-07 20:38:51 +0100
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-12-07 20:38:51 +0100
commit5cf09c6641a2fe1daeece7c34246d954a94c5a9f (patch)
tree4227f68b16948af81223cba08e00337ad2cec2cb /archinstall
parent21cfe5708cc4864d708fa39c2634d766d92c2a03 (diff)
Removing debug output
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/installer.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 5827078c..e06f59a5 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -119,7 +119,6 @@ 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
- print(fstab)
with open(f"{self.mountpoint}/etc/fstab", 'ab') as fstab_fh:
fstab_fh.write(fstab)