diff -r da5f1fa46f2b -r fb73a6b6622d runtime/NevowServer.py --- 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)