Skip to content

Commit d21251d

Browse files
committed
hw-mgmgt: script: Fix hw-mgmt-sync failed issue on Juliet
Fix hw-mgmgt sync scripyt crash. Bug: 4248850 Signed-off-by: Oleksandr Shamray <oleksandrs@nvidia.com>
1 parent c1603e3 commit d21251d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

usr/usr/bin/hw_management_sync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ def main():
728728
sys_attr = atttrib_list["def"]
729729
for key, val in atttrib_list.items():
730730
if re.match(key, product_sku):
731-
sys_attr.update(val)
731+
sys_attr.extend(val)
732732
break
733733

734734
for attr in sys_attr:

0 commit comments

Comments
 (0)