From 60bcded7439a7e76970d7a621ea1abc74d18a719 Mon Sep 17 00:00:00 2001 From: Softer Date: Sat, 11 Apr 2026 10:48:26 +0300 Subject: [PATCH] Replace tab with spaces in preview package lists (#4409) --- 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 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