Skip to content

Commit

Permalink
Fix loop bug
Browse files Browse the repository at this point in the history
  • Loading branch information
seanthegeek committed Jan 6, 2024
1 parent 776edde commit a1de526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checkdmarc/dnssec.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def test_dnssec(domain: str,
if response is not None:
answer = response.answer
if len(answer) != 2:
pass
continue
rrset = answer[0]
rrsig = answer[1]
dns.dnssec.validate(rrset, rrsig, key)
Expand Down

0 comments on commit a1de526

Please sign in to comment.