fixing the host condition

This commit is contained in:
Milan Kolar 2022-07-22 15:01:31 +02:00
parent 037ed71f60
commit 69246a76b4

View file

@ -229,7 +229,7 @@ class IntegrateAsset(pyblish.api.InstancePlugin):
skip = False
for item in self.skip_host_families:
if item["host"] != host_name:
if host_name not in item["host"]:
continue
families = set(item["families"])