Skip to content

Commit

Permalink
Updated Linter
Browse files Browse the repository at this point in the history
Updated error message.
  • Loading branch information
Kapiainen committed Feb 26, 2017
1 parent 1f8a243 commit 6dc86d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Modules/Skyrim/Linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ def AssignmentValidator(self, node):
self.AssignmentValidator(node.data.leftOperand)
self.AssignmentValidator(node.data.rightOperand)
else:
self.Abort("The left-hand side expression contains operators other than the dot operator.")
self.Abort("The left-hand side expression contains operators other than the dot and cast operators.")
elif node.type == self.NODE_UNARYOPERATOR:
self.AssignmentValidator(node.data.operand)
else:
Expand Down

0 comments on commit 6dc86d9

Please sign in to comment.