From f167e67c7a179e9b0e92231012e9ca72da66bd9a Mon Sep 17 00:00:00 2001 From: "Kanangot Balakrishnan, Bindhiya" Date: Tue, 27 May 2025 13:11:47 -0500 Subject: [PATCH] Correct typo in check_required_groups (#386) Signed-off-by: Bindhiya Kanangot Balakrishnan [ROCm/amdsmi commit: 82108a25ab66a519856f05f67d0b7708be8410eb] --- projects/amdsmi/amdsmi_cli/amdsmi_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/amdsmi/amdsmi_cli/amdsmi_helpers.py b/projects/amdsmi/amdsmi_cli/amdsmi_helpers.py index 2a6b39109a..7136b977e8 100644 --- a/projects/amdsmi/amdsmi_cli/amdsmi_helpers.py +++ b/projects/amdsmi/amdsmi_cli/amdsmi_helpers.py @@ -1078,7 +1078,7 @@ class AMDSMIHelpers(): msg = ( "WARNING: User is missing the following required groups: %s. " "Please add user to these groups." - ) % ", ".join(sodurted(missing_groups)) + ) % ", ".join(sorted(missing_groups)) print(msg) logging.warning(msg)