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

Signed-off-by: gabrpham_amdeng <Gabriel.Pham@amd.com>
Этот коммит содержится в:
Pham, Gabriel
2025-03-25 17:43:59 -05:00
коммит произвёл GitHub
родитель 0402bb4d75
Коммит b72cd22225
+1 -1
Просмотреть файл
@@ -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