Skip to content

Commit 87010bb

Browse files
committed
5.12.17
- Fix crash on DNS retry
1 parent 4d4cc52 commit 87010bb

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 5.12.17
4+
5+
- Fix crash on DNS retry
6+
37
## 5.12.16
48

59
- Fix crash on DNS retry

checkdmarc/_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
See the License for the specific language governing permissions and
2020
limitations under the License."""
2121

22-
__version__ = "5.12.16"
22+
__version__ = "5.12.17"
2323

2424
OS = platform.system()
2525
OS_RELEASE = platform.release()

checkdmarc/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def query_dns(
146146
return query_dns(
147147
domain,
148148
record_type,
149-
nameservers,
149+
nameservers=nameservers,
150150
resolver=resolver,
151151
timeout=timeout,
152152
timeout_retries=timeout_retries,

0 commit comments

Comments
 (0)