diff --git a/archinstall/default_profiles/profile.py b/archinstall/default_profiles/profile.py index b54ce389..cc56186f 100644 --- a/archinstall/default_profiles/profile.py +++ b/archinstall/default_profiles/profile.py @@ -212,6 +212,6 @@ class Profile: 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 ae790feb..09b3eb5f 100644 --- a/archinstall/lib/hardware.py +++ b/archinstall/lib/hardware.py @@ -73,7 +73,7 @@ class GfxDriver(Enum): text = tr('Installed packages') + ':\n' for p in sorted(pkg_names): - text += f'\t- {p}\n' + text += f' - {p}\n' return text