Update openpype/settings/ayon_settings.py

Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com>
This commit is contained in:
Jakub Ježek 2023-10-18 14:08:44 +02:00 committed by GitHub
parent 8acd3cc127
commit b7e30d8fa3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -836,10 +836,8 @@ def _convert_nuke_project_settings(ayon_settings, output):
imageio_workfile[dst] = imageio_workfile.pop(src)
# regex inputs
regex_inputs = ayon_imageio.get("regex_inputs")
if regex_inputs:
ayon_imageio.pop("regex_inputs")
ayon_imageio["regexInputs"] = regex_inputs
if "regex_inputs" in ayon_imageio:
ayon_imageio["regexInputs"] = ayon_imageio.pop("regex_inputs")
# nodes
ayon_imageio_nodes = ayon_imageio["nodes"]