Commit 06c837cd by Brian Coca

Merge pull request #7487 from nirvinehh/devel

Clean non-printable chars from stdout instead of dropping the whole thin...
parents 69cf95bd 6b70ee23
......@@ -1067,7 +1067,7 @@ class Runner(object):
if hasattr(sys.stdout, "isatty"):
if "stdout" in data and sys.stdout.isatty():
if not string_functions.isprintable(data['stdout']):
data['stdout'] = ''
data['stdout'] = ''.join(c for c in data['stdout'] if string_functions.isprintable(c))
if 'item' in inject:
result.result['item'] = inject['item']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment