Skip to content

Commit

Permalink
Fixes #88
Browse files Browse the repository at this point in the history
update changelog
  • Loading branch information
ralequi committed Dec 17, 2024
1 parent 5b49c5d commit 7457539
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Version 1.4.0
- Fixed __getstate__ method in Device class. (issue [#86](https://github.com/truenas/py-SMART/issues/86)). Thanks @f18m
- Added DEVELOP.md file to help developers to get started with the project. (MR [#87](https://github.com/truenas/py-SMART/pull/87/files)). Thanks @ssteinerx
- Fixed listing devices on MACOS (issue [#84](https://github.com/truenas/py-SMART/issues/84)). Thanks @evanrich
- Fixed get_selftest_result (issue [#88](https://github.com/truenas/py-SMART/issues/88)). Thanks @guanfeix
- **Breaking changes**
- **smartctl.all**:
- Officially removed support for python 3.7.
Expand Down
2 changes: 1 addition & 1 deletion pySMART/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ def get_selftest_result(self, output=None):
if (
(len(self.tests) != _len) or
(
len == maxlog and
_len == maxlog and
(
_first_entry.type != self.tests[0].type or
_first_entry.hours != self.tests[0].hours or
Expand Down

0 comments on commit 7457539

Please sign in to comment.