From b37fc95386fe3c0734b4c179eda25a117925f344 Mon Sep 17 00:00:00 2001 From: James Kasten Date: Thu, 30 Jul 2015 01:49:04 -0700 Subject: [PATCH] py26 compat --- letsencrypt-apache/letsencrypt_apache/configurator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt-apache/letsencrypt_apache/configurator.py b/letsencrypt-apache/letsencrypt_apache/configurator.py index f2c43f8bf..ce52b8467 100644 --- a/letsencrypt-apache/letsencrypt_apache/configurator.py +++ b/letsencrypt-apache/letsencrypt_apache/configurator.py @@ -678,7 +678,7 @@ class ApacheConfigurator(augeas_configurator.AugeasConfigurator): self.choose_vhost(domain), options) except KeyError: raise errors.PluginError( - "Unsupported enhancement: {}".format(enhancement)) + "Unsupported enhancement: {0}".format(enhancement)) except errors.PluginError: logger.warn("Failed %s for %s", enhancement, domain) raise