Skip to content

Commit 70373b6

Browse files
authored
Proposed fix for issue #1706 (#1707)
1 parent 14681e0 commit 70373b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

osxphotos/exifwriter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -471,8 +471,8 @@ def exiftool_dict(
471471
if self.photo.date_modified is None or options.ignore_date_modified:
472472
exif["QuickTime:ModifyDate"] = creationdate
473473
else:
474-
exif["QuickTime:ModifyDate"] = datetime_tz_to_utc(
475-
exiftool_datetime(self.photo.date_modified)
474+
exif["QuickTime:ModifyDate"] = exiftool_datetime(
475+
datetime_tz_to_utc(self.photo.date_modified)
476476
)
477477

478478
# if photo in PNG remove any IPTC tags (#1031)

0 commit comments

Comments
 (0)