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

Commit

Permalink
Merge pull request #6036 from ynput/bugfix/traypublisher-editorial-do…
Browse files Browse the repository at this point in the history
…-not-lower

Traypublisher: editorial preserve clip case sensitivity
  • Loading branch information
m-u-r-p-h-y authored Dec 8, 2023
2 parents 62a685b + b855c72 commit a605c5a
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 a605c5a

Please sign in to comment.