Skip to content

Commit 60bcded

Browse files
authored
Replace tab with spaces in preview package lists (#4409)
1 parent 9344074 commit 60bcded

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

archinstall/default_profiles/profile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,6 @@ def packages_text(self, include_sub_packages: bool = False) -> str:
212212
text = tr('Installed packages') + ':\n'
213213

214214
for pkg in sorted(packages):
215-
text += f'\t- {pkg}\n'
215+
text += f' - {pkg}\n'
216216

217217
return text

archinstall/lib/hardware.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def packages_text(self) -> str:
7373
text = tr('Installed packages') + ':\n'
7474

7575
for p in sorted(pkg_names):
76-
text += f'\t- {p}\n'
76+
text += f' - {p}\n'
7777

7878
return text
7979

0 commit comments

Comments
 (0)