[Mellanox] Align PSU name convention returned from psu.get_name platform API (#7783)

Make PSU name returned from platform API aligned with the convention "PSU {X}" instead of "PSU{X}".
This commit is contained in:
Kebo Liu 2021-06-05 00:40:23 +08:00 committed by Qi Luo
parent 32e5137ab7
commit 33cb83cbd1

View File

@ -65,7 +65,7 @@ class Psu(PsuBase):
psu_oper_status = "thermal/psu{}_pwr_status".format(self.index)
#psu_oper_status should always be present for all platforms
self.psu_oper_status = os.path.join(self.psu_path, psu_oper_status)
self._name = "PSU{}".format(psu_index + 1)
self._name = "PSU {}".format(psu_index + 1)
if platform in platform_dict_psu:
filemap = psu_profile_list[platform_dict_psu[platform]]