Skip to content

Commit

Permalink
Merge pull request #2 from MaximumFX/patch-1
Browse files Browse the repository at this point in the history
Fix frame range
  • Loading branch information
gillesvink authored Mar 21, 2023
2 parents 58a2fa9 + a207ebb commit 7e60ba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/app/dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def __deliver_sequence(
)
os.makedirs(delivery_folder)

for frame in range(first_frame, last_frame):
for frame in range(first_frame, last_frame + 1):
publish_file = sequence_path % frame
delivery_file = delivery_path % frame

Expand Down

0 comments on commit 7e60ba8

Please sign in to comment.