Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #953 from pypeclub/bugfix/tvpaint_single_frame_seq…
Browse files Browse the repository at this point in the history
…uence

Fix single frame Sequence in TVPaint
  • Loading branch information
mkolar authored Feb 1, 2021
2 parents 6ef2070 + 6d70130 commit eeff330
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pype/plugins/tvpaint/publish/extract_sequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,10 @@ def process(self, instance):
os.path.basename(filepath)
for filepath in output_files_by_frame.values()
]
# Sequence of one frame
if len(repre_files) == 1:
repre_files = repre_files[0]

new_repre = {
"name": ext,
"ext": ext,
Expand Down

0 comments on commit eeff330

Please sign in to comment.