global: rename typo on function name

This commit is contained in:
Jakub Jezek 2022-12-30 10:27:38 +01:00
parent 0861f87923
commit e2b3bcdbf6
No known key found for this signature in database
GPG key ID: 730D7C02726179A7
2 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@ from openpype.lib.log import Logger
log = Logger.get_logger(__name__)
def get_imagio_colorspace_from_filepath(
def get_imageio_colorspace_from_filepath(
path, host_name, project_name,
config_data=None, file_rules=None,
project_settings=None,

View file

@ -14,7 +14,7 @@ from .lib import (
)
from ..colorspace import (
get_imagio_colorspace_from_filepath,
get_imageio_colorspace_from_filepath,
get_imageio_config,
get_imageio_file_rules
)
@ -354,7 +354,7 @@ class ExtractorColormanaged(Extractor):
filename))
# get matching colorspace from rules
colorspace = colorspace or get_imagio_colorspace_from_filepath(
colorspace = colorspace or get_imageio_colorspace_from_filepath(
filename, host_name, project_name,
config_data=config_data,
file_rules=file_rules,