Skip to content

Commit

Permalink
Fix #411
Browse files Browse the repository at this point in the history
  • Loading branch information
TheElementalOfDestruction committed Mar 21, 2024
1 parent 9e10c2c commit 0daecd8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
**v0.48.4**
* [[TeamMsgExtractor #411](https://github.com/TeamMsgExtractor/msg-extractor/issues/411)] Fix console script throwing error due to changed console args not defaulting.

**v0.48.3**
* [[TeamMsgExtractor #409](https://github.com/TeamMsgExtractor/msg-extractor/issues/409)] Added missing private method to `SignedAttachment`.
* Fixed some missing typing information.
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ your access to the newest major version of extract-msg.
.. |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.48.3-blue.svg
:target: https://pypi.org/project/extract-msg/0.48.3/
.. |PyPI3| image:: https://img.shields.io/badge/pypi-0.48.4-blue.svg
:target: https://pypi.org/project/extract-msg/0.48.4/

.. |PyPI2| image:: https://img.shields.io/badge/python-3.8+-brightgreen.svg
:target: https://www.python.org/downloads/release/python-3810/
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__ = 'Destiny Peterson & Matthew Walker'
__date__ = '2024-03-20'
__version__ = '0.48.3'
__version__ = '0.48.4'

__all__ = [
# Modules:
Expand Down
2 changes: 1 addition & 1 deletion extract_msg/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from typing import List


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

0 comments on commit 0daecd8

Please sign in to comment.