Skip to content

Commit

Permalink
Merge pull request #1018 from ynput/bugfix/fixes_for_Pyblish
Browse files Browse the repository at this point in the history
Tools: Fix Creator and Pyblish Pype tools
  • Loading branch information
iLLiCiTiT authored Nov 21, 2024
2 parents 9293c28 + 962df74 commit caf4236
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/ayon_core/tools/creator/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def __init__(self):

def validate(self, text, pos):
results = super(ProductNameValidator, self).validate(text, pos)
if results[0] == self.Invalid:
if results[0] == RegularExpressionValidatorClass.Invalid:
self.invalid.emit(self.invalid_chars(text))
return results

Expand Down

0 comments on commit caf4236

Please sign in to comment.