Refactor clip name extraction in create_editorial.py

The code change updates the way the clip name is extracted from the OTIO file. The ".lower()" method has been removed to preserve case sensitivity.
This commit is contained in:
Jakub Jezek 2023-12-08 17:39:28 +01:00
parent 62a685b0e4
commit b855c72557
No known key found for this signature in database
GPG key ID: 730D7C02726179A7

View file

@ -663,7 +663,7 @@ or updating already created. Publishing will create OTIO file.
variant_name = instance_data["variant"]
# basic unique asset name
clip_name = os.path.splitext(otio_clip.name)[0].lower()
clip_name = os.path.splitext(otio_clip.name)[0]
project_doc = get_project(self.project_name)
shot_name, shot_metadata = self._shot_metadata_solver.generate_data(