beremiz
Clone
Summary
Browse
Changes
Graph
Runtime: Fix typo in PLCObject leading to exception when reporting failure.
svghmi
2020-06-19, Edouard Tisserant
12cd06391185
Parents
2ddedeb035e0
Children
d3fe41f4a070
Runtime: Fix typo in PLCObject leading to exception when reporting failure.
1 files changed, 1 insertions(+), 1 deletions(-)
+1
-1
runtime/PLCObject.py
--- a/runtime/PLCObject.py Thu Jun 18 14:18:40 2020 +0200
+++ b/runtime/PLCObject.py Fri Jun 19 11:07:25 2020 +0200
@@ -451,7 +451,7 @@
self.PythonThreadCond.notify()
self.PythonThreadCondLock.release()
- def _fail(msg):
+ def _fail(self, msg):
self.LogMessage(0, msg)
self.PLCStatus = PlcStatus.Broken
self.StatusChange()