Skip to content

Commit

Permalink
Fix: published source paths are lower cased (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tilix4 authored Jan 26, 2023
1 parent ac80251 commit da9baec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/pipeline/anatomy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,7 @@ def find_root_template_from_path(self, path):
if _mod_path.startswith(root_path):
result = True
replacement = "{" + self.full_key() + "}"
output = replacement + _mod_path[len(root_path):]
output = replacement + mod_path[len(root_path):]
break

return (result, output)
Expand Down

0 comments on commit da9baec

Please sign in to comment.