diff options
Diffstat (limited to 'tool/modules/dns.py')
-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 |