[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 GitHub
parent bcd381c6ae
commit 93534ce0e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,7 +80,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]]