From f6584f747f70994eca3cb4316a74be1f01a8a8a9 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Mon, 2 Feb 2015 15:52:29 +0000 Subject: [PATCH] Kill that whitespace more carefully. --- callback_plugins/logdetail.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/callback_plugins/logdetail.py b/callback_plugins/logdetail.py index bab951b43e..fc328a0482 100644 --- a/callback_plugins/logdetail.py +++ b/callback_plugins/logdetail.py @@ -138,10 +138,15 @@ class LogMech(object): elif self.play_info.get('check', False): category = 'CHECK:' + category + # Sometimes this is None.. othertimes it's fine. Othertimes it has + # trailing whitespace that kills logview. Strip that, when possible. + if name: + name = name.strip() + sanitize_host = host.replace(' ', '_').replace('>', '-') fd = open(self.logpath_play + '/' + sanitize_host + '.log', 'a') now = time.strftime(TIME_FORMAT, time.localtime()) - fd.write(MSG_FORMAT % dict(now=now, name=name.strip(), count=count, category=category, data=json.dumps(data))) + fd.write(MSG_FORMAT % dict(now=now, name=name, count=count, category=category, data=json.dumps(data))) fd.close()