--- a/runtime/PLCObject.py Thu Jan 31 14:10:06 2019 +0100
+++ b/runtime/PLCObject.py Fri Feb 01 14:14:13 2019 +0100
@@ -37,6 +37,7 @@
from tempfile import mkstemp
+from functools import wraps from runtime.typemapping import TypeTranslator
from runtime.loglevels import LogLevelsDefault, LogLevelsCount
@@ -72,6 +73,7 @@
def func_wrapper(*args, **kwargs):
return MainWorker.call(func, *args, **kwargs)
--- a/runtime/Worker.py Thu Jan 31 14:10:06 2019 +0100
+++ b/runtime/Worker.py Fri Feb 01 14:14:13 2019 +0100
@@ -65,13 +65,15 @@
raise _job.exc_info[0], _job.exc_info[1], _job.exc_info[2]
def call(self, *args, **kwargs):
@@ -97,8 +99,8 @@