OP-2813 - fix wrong logging

This commit is contained in:
Petr Kalis 2022-03-17 18:00:25 +01:00
parent 395d567aa2
commit d080b17cce

View file

@ -613,8 +613,9 @@ class ProcessSubmittedJobOnFarm(pyblish.api.InstancePlugin):
# might be added explicitly before by publish_on_farm
already_there = repre.get("files") == rep["files"]
if already_there:
self.log.debug("repre {} already_there".format(repre))
break
self.log.debug("repre {} already_there".format(repre))
if not already_there:
representations.append(rep)