Corrected the new-line parameter

This commit is contained in:
Anton Hvornum 2021-04-08 10:36:42 +02:00 committed by Dylan Taylor
parent b96ba6e237
commit c6e7bb4595
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ class Installer():
fstab_fh.write(fstab)
if not os.path.isfile(f'{self.mountpoint}/etc/fstab'):
raise RequirementError(f'Could not generate fstab, strapping in packages most likely failed (disk out of space?)\n{b"".join(fstab)}')
raise RequirementError(f'Could not generate fstab, strapping in packages most likely failed (disk out of space?)\n{fstab}')
return True