Skip to content

Commit 32b0774

Browse files
author
Simon Prickett
committed
Fixed typo in error message.
1 parent 710b141 commit 32b0774

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aredis_om/model/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def validate_model_fields(model: Type["RedisModel"], field_values: Dict[str, Any
124124
if not hasattr(obj, sub_field):
125125
raise QuerySyntaxError(
126126
f"The update path {field_name} contains a field that does not "
127-
f"exit on {model.__name__}. The field is: {sub_field}"
127+
f"exist on {model.__name__}. The field is: {sub_field}"
128128
)
129129
obj = getattr(obj, sub_field)
130130
return

0 commit comments

Comments
 (0)