Skip to content

Commit

Permalink
Small fix in the new parse section
Browse files Browse the repository at this point in the history
  • Loading branch information
agabellini authored Nov 25, 2024
1 parent fc9ee0d commit b7e72a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dell_sc/agent_based/dell_sc_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def parse_dell_sc_cache(string_table):
section = {}
for line in string_table:
section[line[0]] = {
'status': int(line[0]),
'status': int(line[1]),
'name': line[2],
'battery_status': int(line[3]),
'battery_expiry': line[4],
Expand Down

0 comments on commit b7e72a0

Please sign in to comment.