Runtime: Fix typo in PLCObject leading to exception when reporting failure.
authorEdouard Tisserant
Fri, 19 Jun 2020 11:07:25 +0200
changeset 2682 4d3320fdab19
parent 2681 abc2088aac4e
child 2683 5d8a4deacfe1
Runtime: Fix typo in PLCObject leading to exception when reporting failure.
runtime/PLCObject.py
--- a/runtime/PLCObject.py	Thu Jun 18 14:18:16 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()