Fix non-incrementing photo count, #999

This commit is contained in:
Rhet Turnbull 2023-04-08 09:09:33 -07:00
parent 4939324d2f
commit adac985309

View File

@ -1442,6 +1442,7 @@ def export(
for p in photos:
photo_num += 1
kwargs["photo"] = p
kwargs["photo_num"] = photo_num
export_results = export_photo(**kwargs)
if post_function:
for function in post_function: