fix: use correct variable for zone name in http handler
This commit is contained in:
parent
1d4672943d
commit
2fcde66ef1
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ from ..config import Config
|
||||||
|
|
||||||
class HTTPHandler(Handler):
|
class HTTPHandler(Handler):
|
||||||
def __init__(self, zone: str, config: Config, token: str) -> None:
|
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)
|
self.filepath = os.path.join(config.acme_path, token)
|
||||||
|
|
||||||
def create(self, record_name: str, record_value: str) -> None:
|
def create(self, record_name: str, record_value: str) -> None:
|
||||||
|
|
Loading…
Reference in a new issue