diff --git a/OTcerts.py b/OTcerts.py index b9c4e92..edfa850 100644 --- a/OTcerts.py +++ b/OTcerts.py @@ -134,8 +134,8 @@ def acme_request(config, domain_name, acme_test='DNS-01', dryrun=False, domains_ if acme_test == 'DNS-01': args += " --manual certonly " args += "--preferred-challenges dns-01 " - args += "--manuale-auth-hook {} ".format(config['certbot']['auth_hook']) - args += "--manuale-cleanup-hook {} ".format(config['certbot']['cleanup_hook']) + args += "--manual-auth-hook {} ".format(config['certbot']['auth_hook']) + args += "--manual-cleanup-hook {} ".format(config['certbot']['cleanup_hook']) args += "-d {},*.{}".format(domain_name, domain_name) elif acme_test == 'HTTP-01': args += " --webroot certonly "