missing elif

This commit is contained in:
Joshua Tauberer 2016-02-16 09:11:13 -05:00
parent 098e250cc4
commit 36cb2ef41d
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ In Development
* Roundcube updated to version 1.1.4. * Roundcube updated to version 1.1.4.
* When there's a problem delivering an outgoing message, a new 'warning' bounce will come after 3 hours and the box will stop trying after 2 days (instead of 5). * When there's a problem delivering an outgoing message, a new 'warning' bounce will come after 3 hours and the box will stop trying after 2 days (instead of 5).
* On multi-homed machines, Postfix now binds to the right network interface when sending outbound mail so that SPF checks on the receiving end will pass. * On multi-homed machines, Postfix now binds to the right network interface when sending outbound mail so that SPF checks on the receiving end will pass.
* TLS certificate provisioning would crash if DNS propagation was in progress and a challenge failed. * TLS certificate provisioning would crash if DNS propagation was in progress and a challenge failed; might have shown the wrong error when provisioning fails.
* Backup times were displayed with the wrong time zone. * Backup times were displayed with the wrong time zone.
* On low-usage systems, don't hold backups for quite so long by taking a full backup more often. * On low-usage systems, don't hold backups for quite so long by taking a full backup more often.
* Nightly status checks might fail if any domains had non-ASCII characters. * Nightly status checks might fail if any domains had non-ASCII characters.

View File

@ -204,7 +204,7 @@ def get_certificates_to_provision(env, show_extended_problems=True, force_domain
domains_if_any.add(domain) domains_if_any.add(domain)
# It's valid. Should we report its validness? # It's valid. Should we report its validness?
if show_extended_problems: elif show_extended_problems:
problems[domain] = "The certificate is valid for at least another 30 days --- no need to replace." problems[domain] = "The certificate is valid for at least another 30 days --- no need to replace."
# Warn the user about domains hosted elsewhere. # Warn the user about domains hosted elsewhere.