Skip to content

Commit

Permalink
Display all packages to be installed
Browse files Browse the repository at this point in the history
  • Loading branch information
svartkanin committed Jan 30, 2024
1 parent 9056644 commit ccd9d74
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions archinstall/lib/profile/profile_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,7 @@ def _preview_profile(self) -> Optional[str]:
text = ''

if profile:
sub_profiles = profile.current_selection
if sub_profiles is not None:
if (sub_profiles := profile.current_selection) is not None:
text += str(_('Selected profiles: '))
text += ', '.join([p.name for p in sub_profiles]) + '\n'

Expand Down

0 comments on commit ccd9d74

Please sign in to comment.