From 2fcde66ef1e2b6da3f2c8a76b467237eff0f985f Mon Sep 17 00:00:00 2001 From: ptrcnull Date: Sun, 7 Apr 2024 11:22:25 +0200 Subject: [PATCH] fix: use correct variable for zone name in http handler --- nyacme/handlers/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nyacme/handlers/http.py b/nyacme/handlers/http.py index d136b19..2495b69 100644 --- a/nyacme/handlers/http.py +++ b/nyacme/handlers/http.py @@ -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: