[SWDEV-520754] Fixed str int concatenation issue (#186)

Signed-off-by: gabrpham_amdeng <Gabriel.Pham@amd.com>
This commit is contained in:
Pham, Gabriel
2025-03-25 17:43:59 -05:00
committed by GitHub
parent 0402bb4d75
commit b72cd22225
+1 -1
View File
@@ -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