3.7.3 - Fix saving attachment from forensic sample to Elasticsearch

This commit is contained in:
Sean Whalen
2018-08-19 11:55:29 -04:00
parent 4d1cdf9e18
commit d74ec346ce
4 changed files with 9 additions and 4 deletions
+5
View File
@@ -1,3 +1,8 @@
3.7.3
-----
- Fix saving attachment from forensic sample to Elasticsearch
3.7.2
-----
+1 -1
View File
@@ -43,7 +43,7 @@ import imapclient.exceptions
import dateparser
import mailparser
__version__ = "3.7.2"
__version__ = "3.7.3"
logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)
+2 -2
View File
@@ -129,8 +129,8 @@ class _ForensicSampleDoc(InnerDoc):
address=address))
def add_attachment(self, filename, content_type):
self.attachments.append(filename=filename,
content_type=content_type)
self.attachments.append(_EmailAttachmentDoc(filename=filename,
content_type=content_type))
class _ForensicReportDoc(Document):
+1 -1
View File
@@ -14,7 +14,7 @@ from setuptools import setup
from codecs import open
from os import path
__version__ = "3.7.2"
__version__ = "3.7.3"
description = "A Python package and CLI for parsing aggregate and " \
"forensic DMARC reports"