From 60a445f06362c710e12285dc6d8600de100fb598 Mon Sep 17 00:00:00 2001 From: Softer Date: Sat, 11 Apr 2026 05:27:50 +0300 Subject: [PATCH] Replace tab with spaces in preview package lists --- archinstall/default_profiles/profile.py | 2 +- archinstall/lib/hardware.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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