fix: use correct variable for zone name in http handler

This commit is contained in:
ptrcnull 2024-04-07 11:22:25 +02:00
parent 1d4672943d
commit 2fcde66ef1

View file

@ -5,7 +5,7 @@ from ..config import Config
class HTTPHandler(Handler):
def __init__(self, zone: str, config: Config, token: str) -> None:
super().__init__(zone_name, config, token)
super().__init__(zone, config, token)
self.filepath = os.path.join(config.acme_path, token)
def create(self, record_name: str, record_value: str) -> None: