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 #498 from pypeclub/hotfix/strip-dot-from-repre-name
Browse files Browse the repository at this point in the history
Fix: strip dot from repre names in single frame renders
  • Loading branch information
jakubjezek001 authored Aug 31, 2020
2 parents 992ec51 + b4e091c commit a0ca639
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pype/plugins/global/publish/submit_publish_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ def _create_instances_for_aov(self, instance_data, exp_files):
"to render, don't know what to do "
"with them.")
col = rem[0]
_, ext = os.path.splitext(col)
ext = os.path.splitext(col)[1].lstrip(".")
else:
# but we really expect only one collection.
# Nothing else make sense.
Expand Down

0 comments on commit a0ca639

Please sign in to comment.