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:
Kevin Burke 2016-04-17 17:42:51 -07:00
parent bff58d98c1
commit 8ceaf29fb8

View file

@ -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")