mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 14:26:10 -04:00
Add basic docstrings to Installer
This commit is contained in:
parent
6c4b3c08a7
commit
1c258c0a2c
1 changed files with 2 additions and 0 deletions
|
|
@ -1,3 +1,4 @@
|
|||
"""Certbot installer plugin for Postfix."""
|
||||
import logging
|
||||
import os
|
||||
import string
|
||||
|
|
@ -34,6 +35,7 @@ class ExistingConfigError(ValueError): pass
|
|||
@zope.interface.implementer(interfaces.IInstaller)
|
||||
@zope.interface.provider(interfaces.IPluginFactory)
|
||||
class Installer(plugins_common.Plugin):
|
||||
"""Certbot installer plugin for Postfix."""
|
||||
|
||||
description = "Configure TLS with the Postfix MTA"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue