Skip to content

Commit

Permalink
Merge pull request #271 from BigRoy/bugfix/fix_duplicated_creator_war…
Browse files Browse the repository at this point in the history
…ning_message

Fix: Report the duplicated creator class
  • Loading branch information
iLLiCiTiT authored Apr 15, 2024
2 parents b2671c6 + 07cc3bb commit fa32a80
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client/ayon_core/pipeline/create/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -1790,10 +1790,10 @@ def _reset_creator_plugins(self):

creator_identifier = creator_class.identifier
if creator_identifier in creators:
self.log.warning((
"Duplicated Creator identifier. "
"Using first and skipping following"
))
self.log.warning(
"Duplicate Creator identifier: '%s'. Using first Creator "
"and skipping: %s", creator_identifier, creator_class
)
continue

# Filter by host name
Expand Down

0 comments on commit fa32a80

Please sign in to comment.