runtime/NevowServer.py
changeset 1878 fb73a6b6622d
parent 1870 4d070115b552
child 1881 091005ec69c4
--- a/runtime/NevowServer.py	Thu Oct 19 10:57:35 2017 +0300
+++ b/runtime/NevowServer.py	Thu Oct 19 11:03:03 2017 +0300
@@ -50,23 +50,26 @@
 
 
 class DefaultPLCStartedHMI(PLCHMI):
-    docFactory = loaders.stan(tags.div(render=tags.directive('liveElement'))[
-                                            tags.h1["PLC IS NOW STARTED"],
-                                            ])
+    docFactory = loaders.stan(
+        tags.div(render=tags.directive('liveElement'))[
+            tags.h1["PLC IS NOW STARTED"],
+        ])
 
 
 class PLCStoppedHMI(PLCHMI):
-    docFactory = loaders.stan(tags.div(render=tags.directive('liveElement'))[
-                                            tags.h1["PLC IS STOPPED"],
-                                            ])
+    docFactory = loaders.stan(
+        tags.div(render=tags.directive('liveElement'))[
+            tags.h1["PLC IS STOPPED"],
+        ])
 
 
 class MainPage(athena.LiveElement):
     jsClass = u"WebInterface.PLC"
-    docFactory = loaders.stan(tags.div(render=tags.directive('liveElement'))[
-                                                    tags.div(id='content')[
-                                                        tags.div(render=tags.directive('PLCElement')),
-                                                    ]])
+    docFactory = loaders.stan(
+        tags.div(render=tags.directive('liveElement'))[
+            tags.div(id='content')[
+                tags.div(render=tags.directive('PLCElement'))]
+        ])
 
     def __init__(self, *a, **kw):
         athena.LiveElement.__init__(self, *a, **kw)