mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Ensure sys.stdout has an istty method
This commit is contained in:
parent
d7c8cf6ca7
commit
09e0d052ca
1 changed files with 4 additions and 3 deletions
|
@ -745,9 +745,10 @@ class Runner(object):
|
||||||
data = result.result
|
data = result.result
|
||||||
|
|
||||||
# https://github.com/ansible/ansible/issues/4958
|
# https://github.com/ansible/ansible/issues/4958
|
||||||
if "stdout" in data and sys.stdout.isatty():
|
if hasattr(sys.stdout, "isatty"):
|
||||||
if not string_functions.isprintable(data['stdout']):
|
if "stdout" in data and sys.stdout.isatty():
|
||||||
data['stdout'] = ''
|
if not string_functions.isprintable(data['stdout']):
|
||||||
|
data['stdout'] = ''
|
||||||
|
|
||||||
if 'item' in inject:
|
if 'item' in inject:
|
||||||
result.result['item'] = inject['item']
|
result.result['item'] = inject['item']
|
||||||
|
|
Loading…
Reference in a new issue