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

Fix: allow thumbnail creation for single frame renders #460

Merged
merged 2 commits into from
Aug 21, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions pype/plugins/global/publish/extract_jpeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,11 @@ def process(self, instance):
continue

if not isinstance(repre['files'], (list, tuple)):
continue
input_file = repre['files']
else:
input_file = repre['files'][0]

stagingdir = os.path.normpath(repre.get("stagingDir"))
input_file = repre['files'][0]

# input_file = (
# collections[0].format('{head}{padding}{tail}') % start
Expand Down