Skip to content

Commit 6dc86d9

Browse files
committed
Updated Linter
Updated error message.
1 parent 1f8a243 commit 6dc86d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Modules/Skyrim/Linter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ def AssignmentValidator(self, node):
828828
self.AssignmentValidator(node.data.leftOperand)
829829
self.AssignmentValidator(node.data.rightOperand)
830830
else:
831-
self.Abort("The left-hand side expression contains operators other than the dot operator.")
831+
self.Abort("The left-hand side expression contains operators other than the dot and cast operators.")
832832
elif node.type == self.NODE_UNARYOPERATOR:
833833
self.AssignmentValidator(node.data.operand)
834834
else:

0 commit comments

Comments
 (0)