We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d4cc52 commit 87010bbCopy full SHA for 87010bb
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+## 5.12.17
4
+
5
+- Fix crash on DNS retry
6
7
## 5.12.16
8
9
- Fix crash on DNS retry
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.16"
+__version__ = "5.12.17"
23
24
OS = platform.system()
25
OS_RELEASE = platform.release()
checkdmarc/utils.py
@@ -146,7 +146,7 @@ def query_dns(
146
return query_dns(
147
domain,
148
record_type,
149
- nameservers,
+ nameservers=nameservers,
150
resolver=resolver,
151
timeout=timeout,
152
timeout_retries=timeout_retries,
0 commit comments