Skip to content

Commit

Permalink
tool: Fix a comment that pylint annoys about.
Browse files Browse the repository at this point in the history
  • Loading branch information
Spindel committed Apr 18, 2024
1 parent 8255cd2 commit bf83469
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caramel/scripts/tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def refresh(csr, ca_cert, lifetime_short, lifetime_long, backdate):
"""Refresh a single csr."""
last = csr.certificates.first()
old_lifetime = last.not_after - last.not_before
# XXX: In a backdated cert, this is almost always true.
# In a backdated cert, this is almost always true.
if old_lifetime >= lifetime_long:
cert = models.Certificate.sign(csr, ca_cert, lifetime_long, backdate)
else:
Expand Down

0 comments on commit bf83469

Please sign in to comment.