flame: missing dict items function call

This commit is contained in:
Jakub Jezek 2022-04-07 15:14:32 +02:00
parent 1535b47124
commit 304584573b
No known key found for this signature in database
GPG key ID: D8548FBF690B100A

View file

@ -35,7 +35,7 @@ class IntegrateBatchGroup(pyblish.api.InstancePlugin):
all_batch_nodes = self._add_nodes_to_batch_with_links(
instance, task_data, bgroup)
for name, node in all_batch_nodes:
for name, node in all_batch_nodes.items():
self.log.debug("name: {}, dir: {}".format(
name, dir(node)
))