Skip to content

Commit

Permalink
Merge pull request #184 from agabellini/agabellini-dell_sc
Browse files Browse the repository at this point in the history
Small fix in the new parse section
  • Loading branch information
gurubert authored Dec 4, 2024
2 parents 4bd1357 + b7e72a0 commit b5424e5
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 b5424e5

Please sign in to comment.