diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d84d28a..b1633e4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.rst b/README.rst index 4cbff210..a80389e7 100644 --- a/README.rst +++ b/README.rst @@ -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/ diff --git a/extract_msg/__init__.py b/extract_msg/__init__.py index a4eddf2d..b100335a 100644 --- a/extract_msg/__init__.py +++ b/extract_msg/__init__.py @@ -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 diff --git a/extract_msg/message.py b/extract_msg/message.py index 95272bf0..dc3fb694 100644 --- a/extract_msg/message.py +++ b/extract_msg/message.py @@ -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')