Skip to content

Commit 0daecd8

Browse files
Fix #411
1 parent 9e10c2c commit 0daecd8

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
**v0.48.4**
2+
* [[TeamMsgExtractor #411](https://github.com/TeamMsgExtractor/msg-extractor/issues/411)] Fix console script throwing error due to changed console args not defaulting.
3+
14
**v0.48.3**
25
* [[TeamMsgExtractor #409](https://github.com/TeamMsgExtractor/msg-extractor/issues/409)] Added missing private method to `SignedAttachment`.
36
* Fixed some missing typing information.

README.rst

Lines changed: 2 additions & 2 deletions
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.3-blue.svg
264-
:target: https://pypi.org/project/extract-msg/0.48.3/
263+
.. |PyPI3| image:: https://img.shields.io/badge/pypi-0.48.4-blue.svg
264+
:target: https://pypi.org/project/extract-msg/0.48.4/
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

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

2929
__author__ = 'Destiny Peterson & Matthew Walker'
3030
__date__ = '2024-03-20'
31-
__version__ = '0.48.3'
31+
__version__ = '0.48.4'
3232

3333
__all__ = [
3434
# Modules:

extract_msg/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from typing import List
1414

1515

16-
def main(argv : List[str]) -> None:
16+
def main(argv: List[str] = sys.argv) -> None:
1717
# Setup logging to stdout, indicate running from cli
1818
CLI_LOGGING = 'extract_msg_cli'
1919
args = utils.getCommandArgs(argv[1:])

0 commit comments

Comments
 (0)