Skip to content
This repository was archived by the owner on Jun 23, 2020. It is now read-only.

Commit b8d4b11

Browse files
authored
Merge pull request #18 from Syncurity/next-release
Next release
2 parents 21a7952 + 16a9eda commit b8d4b11

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
**v0.20.8**
2+
* Fixed a tab issue and parameter type in messages.py
3+
4+
15
**v0.20.7:**
26

37
* Separated classes into their own files to make things more manageable.

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
include requirements.txt
22
include MANIFEST.in
33
include README.md
4-
include COPYING
4+
include LICENSE.txt
5+
include CHANGELOG.md
56
recursive-exclude * *.py[co]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](LICENSE.txt)
2-
[![PyPI3](https://img.shields.io/badge/pypi-0.20.7-blue.svg)](https://pypi.org/project/extract-msg/0.20.7/)
2+
[![PyPI3](https://img.shields.io/badge/pypi-0.20.8-blue.svg)](https://pypi.org/project/extract-msg/0.20.8/)
33
[![PyPI1](https://img.shields.io/badge/python-2.7+-brightgreen.svg)](https://www.python.org/downloads/release/python-2715/)
44
[![PyPI2](https://img.shields.io/badge/python-3.6+-brightgreen.svg)](https://www.python.org/downloads/release/python-367/)
55

extract_msg/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
__author__ = 'Matthew Walker & The Elemental of Creation'
3030
__date__ = '2018-12-05'
31-
__version__ = '0.20.7'
31+
__version__ = '0.20.8'
3232

3333
from extract_msg import constants
3434
from extract_msg.attachment import Attachment

extract_msg/message.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def cc(self):
341341
return self._cc
342342
except AttributeError:
343343
# Check header first
344-
headerResult = None
344+
headerResult = None
345345
if self.headerInit():
346346
headerResult = self.header['cc']
347347
if headerResult is not None:
@@ -609,4 +609,4 @@ def save_attachments(self, contentId=False, json=False, useFileName=False, raw=F
609609
Saves only attachments in the same folder.
610610
"""
611611
for attachment in self.attachments:
612-
attachment.save(contentId, json, useFileName, raw, custom)
612+
attachment.save(contentId, json, useFileName, raw, customPath)

0 commit comments

Comments
 (0)