Fixes typo in default OCIO config path

Corrects a typo in the built-in OCIO config path. It
appends the missing ".ocio" extension to the ACES 2.0
Studio config path, ensuring that the OCIO configuration
is correctly recognized and loaded.
This commit is contained in:
Jakub Jezek 2025-05-09 11:59:52 +02:00
parent 92aa7e1ccb
commit e4c5b0d0a5
No known key found for this signature in database
GPG key ID: 06DBD609ADF27FD9

View file

@ -72,7 +72,7 @@ def _fallback_ocio_config_profile_types():
def _ocio_built_in_paths():
return [
{
"value": "{BUILTIN_OCIO_ROOT}/aces_2.0/studio-config-v3.0.0_aces-v2.0_ocio-v2.4", # noqa: E501
"value": "{BUILTIN_OCIO_ROOT}/aces_2.0/studio-config-v3.0.0_aces-v2.0_ocio-v2.4.ocio", # noqa: E501
"label": "ACES 2.0 Studio (OCIO v2.4)",
"description": (
"Aces 2.0 Studio OCIO config file. Requires OCIO v2.4.")