4.3.2 release

This commit is contained in:
Sean Whalen
2018-10-14 18:06:57 -04:00
parent 2c8c7f4659
commit 1253f729b1
3 changed files with 8 additions and 3 deletions
+5
View File
@@ -1,3 +1,8 @@
4.3.2
-----
- Fix normalization of the forensic sample from address
4.3.1
-----
+1 -1
View File
@@ -2,7 +2,7 @@
import platform
__version__ = "4.3.1"
__version__ = "4.3.2"
USER_AGENT = "Mozilla/5.0 ((0 {1})) parsedmarc/{2}".format(
platform.system(),
+2 -2
View File
@@ -410,8 +410,8 @@ def parse_email(data):
else:
parsed_email["from"] = None
if parsed_email["from"] is not None:
parsed_email["from"] = parse_email_address(parsed_email["from"][0])
if parsed_email["from"] is not None:
parsed_email["from"] = parse_email_address(parsed_email["from"][0])
if "date" in parsed_email:
parsed_email["date"] = parsed_email["date"].replace("T", " ")