1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-26 07:41:33 +03:00
Files
certbot/trustify/client/challenge.py
2012-11-01 02:20:05 -04:00

11 lines
319 B
Python

from trustify.client import logger
class Challenge(object):
def __init__(self, configurator):
self.config = configurator
def perform(self, quiet=True):
logger.error("Error - base class challenge.perform()")
def clean(self):
logger.error("Error - base class challenge.clean()")