nuke: make get_group_io_nodes soft fail

This commit is contained in:
Jakub Jezek 2022-12-22 11:49:18 +01:00
parent 90303d4137
commit 212b372c03
No known key found for this signature in database
GPG key ID: 730D7C02726179A7

View file

@ -2865,10 +2865,11 @@ def get_group_io_nodes(nodes):
break
if input_node is None:
raise ValueError("No Input found")
log.warning("No Input found")
if output_node is None:
raise ValueError("No Output found")
log.warning("No Output found")
return input_node, output_node