Fix mistaken parameter reference in _should_renew

This commit is contained in:
Seth Schoen
2016-02-02 17:49:42 -08:00
parent 674d71d4e9
commit 0a2b537629
+1 -1
View File
@@ -280,7 +280,7 @@ def _should_renew(config, lineage):
if config.renew_by_default:
logger.info("Auto-renewal forced with --renew-by-default...")
return True
if cert.should_autorenew(interactive=True):
if lineage.should_autorenew(interactive=True):
logger.info("Cert is due for renewal, auto-renewing...")
return True
if config.dry_run: