Skip to content

Commit

Permalink
8.9.3
Browse files Browse the repository at this point in the history
- Revert change in 8.9.2
  • Loading branch information
seanthegeek committed Mar 25, 2024
1 parent cdde973 commit 91daa31
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@
"truststore",
"Übersicht",
"uids",
"Uncategorized",
"unparasable",
"uper",
"urllib",
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

8.9.3
-----

- Revert change in 8.9.2

8.9.2
-----

Expand Down
2 changes: 1 addition & 1 deletion parsedmarc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
from parsedmarc.utils import parse_email
from parsedmarc.utils import timestamp_to_human, human_timestamp_to_datetime

__version__ = "8.9.2"
__version__ = "8.9.3"

logger.debug("parsedmarc v{0}".format(__version__))

Expand Down
2 changes: 1 addition & 1 deletion parsedmarc/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ def get_service_from_reverse_dns_base_domain(base_domain):
try:
service = service_map[base_domain]
except KeyError:
service = dict(name=base_domain, type="Uncategorized")
service = dict(name=base_domain, type=None)

return service

Expand Down

0 comments on commit 91daa31

Please sign in to comment.