mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 07:42:08 -04:00
make sphinx happy
This commit is contained in:
parent
fbaf145c29
commit
42d732d3c2
1 changed files with 8 additions and 1 deletions
|
|
@ -30,7 +30,14 @@ CURRENT_VERSION = util.get_strict_version(certbot.__version__)
|
|||
|
||||
|
||||
def renewal_conf_files(config):
|
||||
"""Return /path/to/*.conf in the renewal conf directory"""
|
||||
"""Build a list of all renewal configuration files.
|
||||
|
||||
:param certbot.interfaces.IConfig config: Configuration object
|
||||
|
||||
:returns: list of renewal configuration files
|
||||
:rtype: `list` of `str`
|
||||
|
||||
"""
|
||||
return glob.glob(os.path.join(config.renewal_configs_dir, "*.conf"))
|
||||
|
||||
def renewal_file_for_certname(config, certname):
|
||||
|
|
|
|||
Loading…
Reference in a new issue