Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion smartmon.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ def collect_ata_metrics(device):

# Some device models report "---" in the threshold value where most
# devices would report "000". We do the substitution here because
# downstream code expects values to be convertable to integer.
# downstream code expects values to be convertible to integer.
if entry['threshold'] == '---':
entry['threshold'] = '0'

Expand Down