From 2861c250007835660cc384a2054472657deac15b Mon Sep 17 00:00:00 2001 From: Patrick Stevens <3138005+Smaug123@users.noreply.github.com> Date: Sat, 19 Oct 2024 23:45:31 +0100 Subject: [PATCH] Correctly interpolate machine admins --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 2c09eef..3f92ec8 100644 --- a/src/main.py +++ b/src/main.py @@ -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)