Skip to content

Commit

Permalink
hw-mgmt: scripts: Fix typo in sync script
Browse files Browse the repository at this point in the history
Signed-off-by: Felix Radensky <[email protected]>
  • Loading branch information
felixradensky committed Dec 24, 2024
1 parent 0cb5d88 commit d1192a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion usr/usr/bin/hw_management_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ def asic_temp_populate(arg_list, arg):
"""
f_asic_ready = "/var/run/hw-management/config/{}_ready".format(arg_list[0])
try:
with open(f_asic_reay, 'r') as f:
with open(f_asic_ready, 'r') as f:
asic_ready = int(f.read().strip())
except (FileNotFoundError, ValueError):
asic_ready = 1
Expand Down

0 comments on commit d1192a2

Please sign in to comment.