Remove non-working html code in div container

The HTML output in div container for alert messages won't work.
Screenshot:
https://1drv.ms/u/s!AlAahwYfjwW6grcT8OHMElhM8PbqfQ

Change-Id: Ib9c1c4bc1e19f24d5ce43d611e64fb953b7602b3
This commit is contained in:
Frank Kloeker 2018-08-13 18:50:43 +02:00
parent 8361a0926d
commit 24bf769145
1 changed files with 1 additions and 2 deletions

View File

@ -1282,11 +1282,10 @@ class Scheduler(threading.Thread):
websocket_url = get_default(self.config, 'web', 'websocket_url', None)
if self._pause:
ret = '<p><b>Queue only mode:</b> preparing to '
ret = 'Queue only mode: preparing to '
if self._exit:
ret += 'exit'
ret += ', queue length: %s' % self.trigger_event_queue.qsize()
ret += '</p>'
data['message'] = ret
data['trigger_event_queue'] = {}