summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--acme_dns_tiny.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/acme_dns_tiny.py b/acme_dns_tiny.py
index cf7d636..2be4d73 100644
--- a/acme_dns_tiny.py
+++ b/acme_dns_tiny.py
@@ -288,7 +288,7 @@ class ACME:
def get_crt(args):
- ttl = int(args['--ttl']) or 60
+ ttl = int(args['--ttl'] or "60")
domains = extract_domains_from_csr(args['--csr'])
acme = ACME(account_key_path=args['--account-key'])
acme.init_sreqs(args['--acme-directory'] or ACME_DEFAULT_DIRECTORY)