Skip to content

Commit

Permalink
Merge pull request #187 from TheElementalOfDestruction/master
Browse files Browse the repository at this point in the history
v0.28.3
  • Loading branch information
TheElementalOfDestruction authored Feb 16, 2021
2 parents 0b7bb8d + e6a4337 commit 472674f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
**v0.28.3**
* Fixed minor typo in an exception description.
* Updated the README this time. Forgot to do it for at least 1 update.

**v0.28.2**
* Started preparing more of the code for when HTML and RTF saving are fully implemented. Please note that they do not work at all right now. Commented out the code for this because it wasn't meant to be uncommented.
* [[TeamMsgExtractor #184](https://github.com/TeamMsgExtractor/msg-extractor/issues/184)] Added code to ensure file names don't have null characters when saving an attachment.
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ Credits
.. |License: GPL v3| image:: https://img.shields.io/badge/License-GPLv3-blue.svg
:target: LICENSE.txt

.. |PyPI3| image:: https://img.shields.io/badge/pypi-0.28.1-blue.svg
:target: https://pypi.org/project/extract-msg/0.28.1/
.. |PyPI3| image:: https://img.shields.io/badge/pypi-0.28.3-blue.svg
:target: https://pypi.org/project/extract-msg/0.28.3/

.. |PyPI1| image:: https://img.shields.io/badge/python-2.7+-brightgreen.svg
:target: https://www.python.org/downloads/release/python-2715/
Expand Down
2 changes: 1 addition & 1 deletion extract_msg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

__author__ = 'The Elemental of Destruction & Matthew Walker'
__date__ = '2021-02-16'
__version__ = '0.28.2'
__version__ = '0.28.3'

import logging

Expand Down
2 changes: 1 addition & 1 deletion extract_msg/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def save(self, toJson = False, useFileName = False, raw = False, ContentId = Fal
count += 1 if raw else 0

if count > 1:
raise IncompatibleOptionsError('Only one of the following options may be used at a time: toJSon, raw, html, rtf')
raise IncompatibleOptionsError('Only one of the following options may be used at a time: toJson, raw, html, rtf')

crlf = inputToBytes(self.crlf, 'utf-8')

Expand Down

0 comments on commit 472674f

Please sign in to comment.