Fixed exception handling in export
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
""" version info """
|
""" version info """
|
||||||
|
|
||||||
__version__ = "0.34.0"
|
__version__ = "0.34.1"
|
||||||
|
|||||||
@@ -106,7 +106,7 @@ def _export_photo_uuid_applescript(
|
|||||||
)
|
)
|
||||||
|
|
||||||
dest = pathlib.Path(dest)
|
dest = pathlib.Path(dest)
|
||||||
if not dest.is_dir:
|
if not dest.is_dir():
|
||||||
raise ValueError(f"dest {dest} must be a directory")
|
raise ValueError(f"dest {dest} must be a directory")
|
||||||
|
|
||||||
if not original ^ edited:
|
if not original ^ edited:
|
||||||
|
|||||||
Reference in New Issue
Block a user