mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 02:44:21 +02:00
Fix mistaken parameter reference in _should_renew
This commit is contained in:
+1
-1
@@ -280,7 +280,7 @@ def _should_renew(config, lineage):
|
|||||||
if config.renew_by_default:
|
if config.renew_by_default:
|
||||||
logger.info("Auto-renewal forced with --renew-by-default...")
|
logger.info("Auto-renewal forced with --renew-by-default...")
|
||||||
return True
|
return True
|
||||||
if cert.should_autorenew(interactive=True):
|
if lineage.should_autorenew(interactive=True):
|
||||||
logger.info("Cert is due for renewal, auto-renewing...")
|
logger.info("Cert is due for renewal, auto-renewing...")
|
||||||
return True
|
return True
|
||||||
if config.dry_run:
|
if config.dry_run:
|
||||||
|
|||||||
Reference in New Issue
Block a user