Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b14130b

Browse files
committedOct 1, 2023
update
1 parent e2d6c6a commit b14130b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/heahmund/ssl.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def run(self):
7171
days_until_expiry = (expiry_date - current_date).days
7272

7373
# Check if the certificate is valid for the specified number of days
74-
if days_until_expiry > days:
74+
if days_until_expiry > self.days:
7575
return {"name": self.name, "status": Status.OK}
7676
else:
7777
return {"name": self.name, "status": Status.NOT_OK}

0 commit comments

Comments
 (0)
Please sign in to comment.