Skip to content

Commit 1e3bf80

Browse files
Merge pull request #422 from TeamMsgExtractor/next-release
Version 0.48.7
2 parents 480d6f7 + 7e39ce4 commit 1e3bf80

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
**v0.48.7**
2+
* [[TeamMsgExtractor #420](https://github.com/TeamMsgExtractor/msg-extractor/issues/420)] Fixed typo introduced in last version.
3+
14
**v0.48.6**
25
* [[TeamMsgExtractor #417](https://github.com/TeamMsgExtractor/msg-extractor/issues/417)] Fixed issues with `openMsg` where some corrupted MSG files could end up throwing an uncaught exception and leaving the file handle open.
36

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ your access to the newest major version of extract-msg.
260260
.. |License: GPL v3| image:: https://img.shields.io/badge/License-GPLv3-blue.svg
261261
:target: LICENSE.txt
262262

263-
.. |PyPI3| image:: https://img.shields.io/badge/pypi-0.48.6-blue.svg
264-
:target: https://pypi.org/project/extract-msg/0.48.6/
263+
.. |PyPI3| image:: https://img.shields.io/badge/pypi-0.48.7-blue.svg
264+
:target: https://pypi.org/project/extract-msg/0.48.7/
265265

266266
.. |PyPI2| image:: https://img.shields.io/badge/python-3.8+-brightgreen.svg
267267
:target: https://www.python.org/downloads/release/python-3810/

extract_msg/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2828

2929
__author__ = 'Destiny Peterson & Matthew Walker'
30-
__date__ = '2024-07-06'
31-
__version__ = '0.48.6'
30+
__date__ = '2024-07-07'
31+
__version__ = '0.48.7'
3232

3333
__all__ = [
3434
# Modules:

extract_msg/open_msg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def openMsg(path, **kwargs) -> MSGFile:
107107
# other file types (like doc, ppt, etc.) might open but not return a class
108108
# type. If the stream is not found, classType returns None, which has no
109109
# lower function. So let's make sure we got a good return first.
110-
if not cy:
110+
if not ct:
111111
if kwargs.get('strict', True):
112112
raise InvalidFileFormatError('File was confirmed to be an olefile, but was not an MSG file.')
113113
else:

0 commit comments

Comments
 (0)