mirror of
https://github.com/certbot/certbot.git
synced 2026-06-09 00:32:12 -04:00
Pass a single argument to append()
The other notify() calls in this block all pass the output of report(), but this one attempts to pass two arguments, which results in the stack trace described in #2822.
This commit is contained in:
parent
bff58d98c1
commit
8ceaf29fb8
1 changed files with 1 additions and 1 deletions
|
|
@ -287,7 +287,7 @@ def _renew_describe_results(config, renew_successes, renew_failures,
|
|||
if parse_failures:
|
||||
notify("\nAdditionally, the following renewal configuration files "
|
||||
"were invalid: ")
|
||||
notify(parse_failures, "parsefail")
|
||||
notify(report(parse_failures, "parsefail"))
|
||||
|
||||
if config.dry_run:
|
||||
notify("** DRY RUN: simulating 'certbot renew' close to cert expiry")
|
||||
|
|
|
|||
Loading…
Reference in a new issue