commit | 4cbf88565bd61f2a1c9ec6f78ffd5b47e96e2248 | [log] [tgz] |
---|---|---|
author | James E. Blair <jeblair@redhat.com> | Tue Jun 21 08:13:53 2016 -0700 |
committer | James E. Blair <jeblair@redhat.com> | Tue Jun 21 08:14:12 2016 -0700 |
tree | 46991be13f02e1dc0a439126f9983fcaf81db485 | |
parent | b547ae95420e25bb8c35372d82fcf2c20dbfbcbe [diff] |
Ansible launcher: add '|' to zuul_log To match the format in zuul_runner. Change-Id: I863e4735ffebfc890782242bd3593a421bfb141b
diff --git a/zuul/ansible/library/zuul_log.py b/zuul/ansible/library/zuul_log.py index 2072bc9..4b377d9 100644 --- a/zuul/ansible/library/zuul_log.py +++ b/zuul/ansible/library/zuul_log.py
@@ -29,7 +29,7 @@ def addLine(self, ln): ts = datetime.datetime.now() - outln = '%s %s' % (str(ts), ln) + outln = '%s | %s' % (str(ts), ln) self.logfile.write(outln)