We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67f0b09 commit 4d4cc52Copy full SHA for 4d4cc52
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+## 5.12.16
4
+
5
+- Fix crash on DNS retry
6
7
## 5.12.15
8
9
- Fix bug in MX TLSA detection introduced in `5.12.13`
checkdmarc/_constants.py
@@ -19,7 +19,7 @@
19
See the License for the specific language governing permissions and
20
limitations under the License."""
21
22
-__version__ = "5.12.15"
+__version__ = "5.12.16"
23
24
OS = platform.system()
25
OS_RELEASE = platform.release()
checkdmarc/utils.py
@@ -180,7 +180,7 @@ def query_dns(
180
return query_dns(
181
domain,
182
record_type,
183
- nameservers,
+ nameservers=nameservers,
184
resolver=resolver,
185
timeout=timeout,
186
timeout_retries=timeout_retries,
0 commit comments