From 1505f5e7bca4900814232d79c499a2a7d6fed013 Mon Sep 17 00:00:00 2001 From: yan Date: Thu, 16 Apr 2015 17:51:45 -0700 Subject: [PATCH] Empty format field not allowed in python 2.6 --- letsencrypt/client/plugins/nginx/configurator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt/client/plugins/nginx/configurator.py b/letsencrypt/client/plugins/nginx/configurator.py index 38006e742..7fed3f9a2 100644 --- a/letsencrypt/client/plugins/nginx/configurator.py +++ b/letsencrypt/client/plugins/nginx/configurator.py @@ -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)