lowercase invalid msg for the condition of not is_maching_value function

This commit is contained in:
Kayla Man 2023-10-31 17:28:42 +08:00
parent 009cda0052
commit ad0b941475

View file

@ -86,7 +86,7 @@ class ValidateAttributes(OptionalPyblishPluginMixin,
if not is_matching_value(object_name, property_name, value):
cls.log.error(
f"Invalid value for: {object_name}.{property_name}"
f" Should be: {value}")
f" should be: {value}")
invalid.append((object_name, property_name))
return invalid