From 6dc86d921a20573fb1be6f076a0022d4d28629e4 Mon Sep 17 00:00:00 2001 From: Kapiainen Date: Sun, 26 Feb 2017 09:31:36 +0200 Subject: [PATCH] Updated Linter Updated error message. --- Source/Modules/Skyrim/Linter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Modules/Skyrim/Linter.py b/Source/Modules/Skyrim/Linter.py index e1c016f..def69b5 100644 --- a/Source/Modules/Skyrim/Linter.py +++ b/Source/Modules/Skyrim/Linter.py @@ -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: