Add basic docstrings to Installer

This commit is contained in:
Brad Warren 2017-08-04 09:31:10 -07:00
parent 6c4b3c08a7
commit 1c258c0a2c

View file

@ -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"