Skip to content
Snippets Groups Projects
Commit aadb5677 authored by Sven Mäder's avatar Sven Mäder :speech_balloon:
Browse files

Fix bug missing loop

parent 5b7a2248
No related branches found
No related tags found
No related merge requests found
...@@ -216,7 +216,8 @@ def run_check(xymon): ...@@ -216,7 +216,8 @@ def run_check(xymon):
if len(no_blocked) > 10: if len(no_blocked) > 10:
content += 'user listing suppressed due to many entries (' + str(len(no_blocked)) + ')<br/>' content += 'user listing suppressed due to many entries (' + str(len(no_blocked)) + ')<br/>'
else: else:
content += ''.join([str(home), '<br/>']) for home in no_blocked:
content += ''.join([str(home), '<br/>'])
xymon.section(title, content) xymon.section(title, content)
xymon.color = pymon.STATUS_WARNING xymon.color = pymon.STATUS_WARNING
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment