diff options
author | crupest <crupest@outlook.com> | 2022-11-27 14:17:33 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-11-27 14:17:33 +0800 |
commit | 6076a8abdcba2b8b61f797214802cbc067536eeb (patch) | |
tree | d6f602945e40103ca80a29c85c588ee2d0c5a118 | |
parent | 5d3f980938b0a9f1faf5be48e9d45928326d0cfa (diff) | |
download | crupest-6076a8abdcba2b8b61f797214802cbc067536eeb.tar.gz crupest-6076a8abdcba2b8b61f797214802cbc067536eeb.tar.bz2 crupest-6076a8abdcba2b8b61f797214802cbc067536eeb.zip |
Fix aio bug.
-rwxr-xr-x | tool/aio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/aio.py b/tool/aio.py index 50b42fa..3e452fc 100755 --- a/tool/aio.py +++ b/tool/aio.py @@ -564,7 +564,7 @@ def check_ssl_cert(): print_create_cert_message(domain) else: cert_domain_set = set(cert_domains) - domains = set(list_domains()) + domains = set(list_domains(domain)) if not cert_domain_set == domains: console.print( "Cert domains are not equal to host domains. Run following command to recreate it.", style="red") |