From 9ecfecbc7ab9434ae719751e23837ebae5bea658 Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Tue, 2 Jun 2015 09:19:51 +0000 Subject: [PATCH] Add missing docstring. --- letsencrypt_apache/configurator.py | 1 + letsencrypt_nginx/configurator.py | 1 + 2 files changed, 2 insertions(+) diff --git a/letsencrypt_apache/configurator.py b/letsencrypt_apache/configurator.py index 965e9cf73..078e61564 100644 --- a/letsencrypt_apache/configurator.py +++ b/letsencrypt_apache/configurator.py @@ -126,6 +126,7 @@ class ApacheConfigurator(augeas_configurator.AugeasConfigurator): @property def mod_ssl_conf(self): + """Full absolute path to SSL configuration file.""" return os.path.join(self.config.config_dir, constants.MOD_SSL_CONF_DEST) def prepare(self): diff --git a/letsencrypt_nginx/configurator.py b/letsencrypt_nginx/configurator.py index 521a4facf..87beb3c8f 100644 --- a/letsencrypt_nginx/configurator.py +++ b/letsencrypt_nginx/configurator.py @@ -91,6 +91,7 @@ class NginxConfigurator(common.Plugin): @property def mod_ssl_conf(self): + """Full absolute path to SSL configuration file.""" return os.path.join(self.config.config_dir, constants.MOD_SSL_CONF_DEST) # This is called in determine_authenticator and determine_installer