- Revert change in 8.9.2
This commit is contained in:
Sean Whalen
2024-03-25 07:04:15 -04:00
parent cdde9734ec
commit 91daa31172
4 changed files with 7 additions and 3 deletions
-1
View File
@@ -109,7 +109,6 @@
"truststore",
"Übersicht",
"uids",
"Uncategorized",
"unparasable",
"uper",
"urllib",
+5
View File
@@ -1,6 +1,11 @@
Changelog
=========
8.9.3
-----
- Revert change in 8.9.2
8.9.2
-----
+1 -1
View File
@@ -34,7 +34,7 @@ from parsedmarc.utils import is_outlook_msg, convert_outlook_msg
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__))
+1 -1
View File
@@ -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