diff --git a/mailbagit/__init__.py b/mailbagit/__init__.py index b134e99..e8789d9 100644 --- a/mailbagit/__init__.py +++ b/mailbagit/__init__.py @@ -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 diff --git a/mailbagit/formats/pst.py b/mailbagit/formats/pst.py index 23b8ec6..1303809 100644 --- a/mailbagit/formats/pst.py +++ b/mailbagit/formats/pst.py @@ -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() diff --git a/setup.py b/setup.py index 794fdff..0874bca 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setuptools.setup( name="mailbagit", - version="0.7.2", + version="0.7.3", author="Gregory Wiedeman", author_email="gwiedeman@albany.edu", description="A tool for preserving email in multiple preservation formats.",