From b713b69b2d65033befa483b1b31360031a3f3a99 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Sven=20M=C3=A4der?= <maeder@phys.ethz.ch>
Date: Thu, 23 Aug 2018 15:02:29 +0200
Subject: [PATCH] Add missing newlines

---
 bin/xymon-home.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/bin/xymon-home.py b/bin/xymon-home.py
index 498e35f..4683742 100755
--- a/bin/xymon-home.py
+++ b/bin/xymon-home.py
@@ -228,7 +228,7 @@ def run_check(xymon):
 
     if bad_home_directory:
         title = 'bad homeDirectory'
-        content = 'the homeDirectory attributes home name does not match the username'
+        content = 'the homeDirectory attributes home name does not match the username<br/><br/>'
         for home in bad_home_directory:
             content += ''.join([str(home), '<br/>'])
         xymon.section(title, content)
@@ -236,7 +236,7 @@ def run_check(xymon):
 
     if no_ldap_user:
         title = 'no user for home'
-        content = 'home directory without a corresponding ldap user'
+        content = 'home directory without a corresponding ldap user<br/><br/>'
         for home in no_ldap_user:
             content += ''.join([str(home), '<br/>'])
         xymon.section(title, content)
@@ -244,7 +244,7 @@ def run_check(xymon):
 
     if bad_nis_map:
         title = 'bad nismaps (home)'
-        content = 'nismap does not match home path on the filesystem'
+        content = 'nismap does not match home path on the filesystem<br/><br/>'
         for home in bad_nis_map:
             content += ''.join([str(home), '<br/>'])
         xymon.section(title, content)
@@ -252,7 +252,7 @@ def run_check(xymon):
 
     if no_nis_map:
         title = 'no nismap for home'
-        content = 'home directory without a corresponding nismap entry'
+        content = 'home directory without a corresponding nismap entry<br/><br/>'
         for home in no_nis_map:
             content += ''.join([str(home), '<br/>'])
         xymon.section(title, content)
-- 
GitLab