fix quotes in path for extract thumbnail in standalone publisher

This commit is contained in:
iLLiCiTiT 2021-06-24 19:05:50 +02:00
parent cb76da2382
commit c74216f082

View file

@ -66,7 +66,6 @@ class ExtractThumbnailSP(pyblish.api.InstancePlugin):
else:
# Convert to jpeg if not yet
full_input_path = os.path.join(thumbnail_repre["stagingDir"], file)
full_input_path = '"{}"'.format(full_input_path)
self.log.info("input {}".format(full_input_path))
full_thumbnail_path = tempfile.mkstemp(suffix=".jpg")[1]