mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
Empty format field not allowed in python 2.6
This commit is contained in:
parent
03e5f3c6c6
commit
1505f5e7bc
1 changed files with 1 additions and 1 deletions
|
|
@ -290,7 +290,7 @@ class NginxConfigurator(object):
|
|||
self.choose_vhost(domain), options)
|
||||
except (KeyError, ValueError):
|
||||
raise errors.LetsEncryptConfiguratorError(
|
||||
"Unsupported enhancement: {}".format(enhancement))
|
||||
"Unsupported enhancement: {0}".format(enhancement))
|
||||
except errors.LetsEncryptConfiguratorError:
|
||||
logging.warn("Failed %s for %s", enhancement, domain)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue