We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf271c1 commit 407343bCopy full SHA for 407343b
CHANGELOG.md
@@ -1,6 +1,11 @@
1
Changelog
2
=========
3
4
+5.8.1
5
+-----
6
+
7
+- Fix incomplete fix for issue [#159](https://github.com/domainaware/checkdmarc/issues/159)
8
9
5.8.0
10
-----
11
checkdmarc/_constants.py
@@ -18,7 +18,7 @@
18
See the License for the specific language governing permissions and
19
limitations under the License."""
20
21
-__version__ = "5.8.0"
+__version__ = "5.8.1"
22
23
OS = platform.system()
24
OS_RELEASE = platform.release()
checkdmarc/dnssec.py
@@ -82,7 +82,6 @@ def get_dnskey(
82
if rset.rdtype != RdataType.RRSIG:
83
rrset = rset
84
break
85
- rrset = answer[0]
86
name = dns.name.from_text(f"{domain}.")
87
key = {name: rrset}
88
cache[domain] = key
0 commit comments