Replace tab with spaces in preview package lists (#4409)

This commit is contained in:
Softer 2026-04-11 10:48:26 +03:00 committed by GitHub
parent 934407414e
commit 60bcded743
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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