Merge pull request #498 from pypeclub/hotfix/strip-dot-from-repre-name

Fix: strip dot from repre names in single frame renders
This commit is contained in:
Jakub Ježek 2020-08-31 16:47:51 +02:00 committed by GitHub
commit a0ca6394ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -428,7 +428,7 @@ class ProcessSubmittedJobOnFarm(pyblish.api.InstancePlugin):
"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.