diff options
author | crupest <crupest@outlook.com> | 2022-11-28 17:44:25 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-11-28 17:44:25 +0800 |
commit | 910d03208b8696483a200e4d25b1a332110c1ef5 (patch) | |
tree | 15788eaf925e7dd71e4263cd6cbe4b36bd8d47d3 /tool | |
parent | ca7634be5d6b68028ebd254c76c484dd6aa3df6e (diff) | |
download | crupest-910d03208b8696483a200e4d25b1a332110c1ef5.tar.gz crupest-910d03208b8696483a200e4d25b1a332110c1ef5.tar.bz2 crupest-910d03208b8696483a200e4d25b1a332110c1ef5.zip |
Fix aio dns.
Diffstat (limited to 'tool')
-rw-r--r-- | tool/modules/dns.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/modules/dns.py b/tool/modules/dns.py index 761a1f5..5006d5f 100644 --- a/tool/modules/dns.py +++ b/tool/modules/dns.py @@ -34,7 +34,7 @@ def get_dkim_from_mailserver(domain: str) -> str | None: capture_output=True, check=True) value = "" for match in re.finditer("\"(.*)\"", p.stdout.decode('utf-8')): - value += match.groups[1] + value += match.group(1) return value |