Beremiz_service.py
changeset 1750 acf02488f37f
parent 1749 d73b64672238
child 1766 c1e5b9f19483
--- a/Beremiz_service.py	Wed Aug 16 12:48:08 2017 +0300
+++ b/Beremiz_service.py	Wed Aug 16 12:53:23 2017 +0300
@@ -547,9 +547,11 @@
 
 def installThreadExcepthook():
     init_old = threading.Thread.__init__
+
     def init(self, *args, **kwargs):
         init_old(self, *args, **kwargs)
         run_old = self.run
+
         def run_with_except_hook(*args, **kw):
             try:
                 run_old(*args, **kw)