Fixed exception handling in export

This commit is contained in:
Rhet Turnbull
2020-09-13 12:19:21 -07:00
parent a1776fa148
commit eb00ffd737
2 changed files with 2 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
""" version info """
__version__ = "0.34.0"
__version__ = "0.34.1"

View File

@@ -106,7 +106,7 @@ def _export_photo_uuid_applescript(
)
dest = pathlib.Path(dest)
if not dest.is_dir:
if not dest.is_dir():
raise ValueError(f"dest {dest} must be a directory")
if not original ^ edited: