From a98c8bca1c1f3c95c1acc0c2e8adbc58517ecb24 Mon Sep 17 00:00:00 2001 From: "Pham, Gabriel" Date: Tue, 25 Mar 2025 17:43:59 -0500 Subject: [PATCH] [SWDEV-520754] Fixed str int concatenation issue (#186) Signed-off-by: gabrpham_amdeng [ROCm/amdsmi commit: b72cd2222537d61e7a6eb2e3e8ed2ef08ad9220f] --- 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 05cd5abcf3..d48ad59ac5 100644 --- a/projects/amdsmi/amdsmi_cli/amdsmi_helpers.py +++ b/projects/amdsmi/amdsmi_cli/amdsmi_helpers.py @@ -93,7 +93,7 @@ class AMDSMIHelpers(): self._is_passthrough = True break # Once passthrough is determined, we can immediately break except amdsmi_exception.AmdSmiLibraryException as e: - logging.debug("Unable to determine virtualization status: " + e.get_error_code()) + logging.debug("Unable to determine virtualization status: " + str(e.get_error_code())) def increment_set_count(self): self._count_of_sets_called += 1