Skip to content

Commit

Permalink
HOTFIX tv_save_sequence range handling
Browse files Browse the repository at this point in the history
  • Loading branch information
rlahmidi committed Sep 16, 2024
1 parent a228e6d commit a145740
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytvpaint/george/grg_clip.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def tv_save_sequence(

args: list[Any] = [export_path.as_posix()]

if mark_in and mark_out:
if mark_in is not None and mark_out is not None:
args.extend([mark_in, mark_out])

send_cmd("tv_SaveSequence", *args)
Expand Down

0 comments on commit a145740

Please sign in to comment.