Skip to content

Commit fc25bf9

Browse files
committed
5.2.21
- Fix typo in the DMARC record does not exist error message (Closes #195)
1 parent 5e5b688 commit fc25bf9

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.2.21
4+
5+
- Fix typo in the DMARC record does not exist error message (Closes #195)
6+
37
## 5.2.20
48

59
- Don't overcount lookups caused by the `mx` mechanism (Closes #197)

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.20"
22+
__version__ = "5.12.21"
2323

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

checkdmarc/dmarc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ def query_dmarc_record(
575575
)
576576
location = base_domain
577577
if record is None:
578-
error_str = "A DMARC record does not exist"
578+
error_str = "A DMARC record does not exist "
579579
if domain == base_domain:
580580
error_str += "."
581581
else:

0 commit comments

Comments
 (0)