diff --git a/archinstall/default_profiles/profile.py b/archinstall/default_profiles/profile.py index b54ce3890b..cc56186f38 100644 --- a/archinstall/default_profiles/profile.py +++ b/archinstall/default_profiles/profile.py @@ -212,6 +212,6 @@ def packages_text(self, include_sub_packages: bool = False) -> str: text = tr('Installed packages') + ':\n' for pkg in sorted(packages): - text += f'\t- {pkg}\n' + text += f' - {pkg}\n' return text diff --git a/archinstall/lib/hardware.py b/archinstall/lib/hardware.py index ae790febac..09b3eb5f13 100644 --- a/archinstall/lib/hardware.py +++ b/archinstall/lib/hardware.py @@ -73,7 +73,7 @@ def packages_text(self) -> str: text = tr('Installed packages') + ':\n' for p in sorted(pkg_names): - text += f'\t- {p}\n' + text += f' - {p}\n' return text