mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
OP-2505 - fixed message
This commit is contained in:
parent
1c700faacf
commit
78b3e9dad8
1 changed files with 2 additions and 4 deletions
|
|
@ -25,8 +25,6 @@ class ValidateSubsetUniqueness(pyblish.api.ContextPlugin):
|
|||
[item
|
||||
for item, count in collections.Counter(subset_names).items()
|
||||
if count > 1]
|
||||
msg = (
|
||||
"Instance subset names {} are not unique. " +
|
||||
"Remove duplicates via SubsetManager.".format(non_unique)
|
||||
)
|
||||
msg = ("Instance subset names {} are not unique. ".format(non_unique) +
|
||||
"Remove duplicates via SubsetManager.")
|
||||
assert not non_unique, msg
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue