runtime/PLCObject.py
changeset 1750 acf02488f37f
parent 1749 d73b64672238
child 1760 ed2e2afb9573
--- a/runtime/PLCObject.py	Wed Aug 16 12:48:08 2017 +0300
+++ b/runtime/PLCObject.py	Wed Aug 16 12:53:23 2017 +0300
@@ -171,6 +171,7 @@
                 # If python confnode is not enabled, we reuse _PythonIterator
                 # as a call that block pythonthread until StopPLC
                 self.PlcStopping = Event()
+
                 def PythonIterator(res, blkid):
                     self.PlcStopping.clear()
                     self.PlcStopping.wait()
@@ -286,6 +287,7 @@
                 v = t()
                 r = self.python_runtime_vars["_PySafeGetPLCGlob_"+name](ctypes.byref(v))
                 return self.python_runtime_vars["_"+name+"_unpack"](v)
+
             def __setattr__(_self, name, value):
                 try:
                     t = self.python_runtime_vars["_"+name+"_ctype"]