mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #271 from BigRoy/bugfix/fix_duplicated_creator_warning_message
Fix: Report the duplicated creator class
This commit is contained in:
commit
fa32a807c5
1 changed files with 4 additions and 4 deletions
|
|
@ -1790,10 +1790,10 @@ class CreateContext:
|
|||
|
||||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue