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

Commit

Permalink
Bugfix make_image_sequence with one layer
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementHector committed Feb 18, 2022
1 parent 1141a54 commit dc911a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/hosts/photoshop/plugins/publish/extract_review.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def process(self, instance):
layers = self._get_layers_from_image_instances(instance)
self.log.info("Layers image instance found: {}".format(layers))

if self.make_image_sequence and layers:
if self.make_image_sequence and len(layers) > 1:
self.log.info("Extract layers to image sequence.")
img_list = self._saves_sequences_layers(staging_dir, layers)

Expand Down

0 comments on commit dc911a8

Please sign in to comment.