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 | 5daa2ec78642e7e9976410c70b43beba7ac47eab (patch) | |
| tree | d6f602945e40103ca80a29c85c588ee2d0c5a118 /tool | |
| parent | 1d616bb65c584e3741369533fc511b53b7ddbcf1 (diff) | |
| download | crupest-5daa2ec78642e7e9976410c70b43beba7ac47eab.tar.gz crupest-5daa2ec78642e7e9976410c70b43beba7ac47eab.tar.bz2 crupest-5daa2ec78642e7e9976410c70b43beba7ac47eab.zip  | |
Fix aio bug.
Diffstat (limited to 'tool')
| -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")  | 
