Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Refactor clip name extraction in create_editorial.py
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jakubjezek001 committed Dec 8, 2023
1 parent 62a685b commit b855c72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ def _get_base_instance_data(
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(
Expand Down

0 comments on commit b855c72

Please sign in to comment.