Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug fix #253

Merged
merged 2 commits into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mailbagit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# __init__.py

# Version of the mailbagit package
__version__ = "0.7.2"
__version__ = "0.7.3"

import os
from pathlib import Path
Expand Down
1 change: 1 addition & 0 deletions mailbagit/formats/pst.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,7 @@ def messages(self, iteration_only=False):
originalFile = Path(os.path.normpath(rel_path)).as_posix()
# original file is now the relative path to the PST from the provided path

errors = []
pst = pypff.file()
pst.open(filePath)
root = pst.get_root_folder()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setuptools.setup(
name="mailbagit",
version="0.7.2",
version="0.7.3",
author="Gregory Wiedeman",
author_email="[email protected]",
description="A tool for preserving email in multiple preservation formats.",
Expand Down
Loading