Skip to content

Commit 4d4cc52

Browse files
committed
5.12.16
- Fix crash on DNS retry
1 parent 67f0b09 commit 4d4cc52

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.16
4+
5+
- Fix crash on DNS retry
6+
37
## 5.12.15
48

59
- Fix bug in MX TLSA detection introduced in `5.12.13`

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.15"
22+
__version__ = "5.12.16"
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
@@ -180,7 +180,7 @@ def query_dns(
180180
return query_dns(
181181
domain,
182182
record_type,
183-
nameservers,
183+
nameservers=nameservers,
184184
resolver=resolver,
185185
timeout=timeout,
186186
timeout_retries=timeout_retries,

0 commit comments

Comments
 (0)