From 1ab4a4bfde89b4759821040885becf6d9f0c6b17 Mon Sep 17 00:00:00 2001 From: jigen Date: Sun, 23 Feb 2020 20:27:56 +0100 Subject: [PATCH] Print subdomain --- OTcerts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OTcerts.py b/OTcerts.py index f1a4cc9..33b8c5f 100644 --- a/OTcerts.py +++ b/OTcerts.py @@ -294,7 +294,7 @@ if __name__ == '__main__': # Nel caso i nameserver NON siano gestiti, allora chiedi un certificato per ogni sottodominio # Crea il link per ogni subdomain for subdomain in domain_feat['subdomains']: - logger.info('Get certificates for {}'.format(domain_name)) + logger.info('Get certificates for {}'.format(subdomain)) if acme_request(config, subdomain, acme_test='HTTP-01', dryrun=dryrun): link_cert(config, subdomain, subdomain, dryrun=dryrun) ot_conn.close()