Browse Source

Fixed error in command line options spelling

jigen 5 years ago
parent
commit
c690e7d649
1 changed files with 2 additions and 2 deletions
  1. 2 2
      OTcerts.py

+ 2 - 2
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 "