Skip to content

Commit

Permalink
Correctly interpolate machine admins
Browse files Browse the repository at this point in the history
  • Loading branch information
Smaug123 authored Oct 19, 2024
1 parent 5efb46e commit 2861c25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def check_cur_os(self):
if self.sysinfo.boot_mode == "macOS" and self.sysinfo.login_user not in self.cur_os.admin_users:
p_error(f"Your login user {self.sysinfo.login_user} is not a machine admin.")
print()
p_info("These users are machine admins: {' '.join(self.cur_os.admin_users)}")
p_info(f"These users are machine admins: {' '.join(self.cur_os.admin_users)}")
print()
p_message("You have to be a machine admin to install Asahi Linux.")
sys.exit(1)
Expand Down

0 comments on commit 2861c25

Please sign in to comment.