mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 04:40:22 -07:00
simpler safe output
This commit is contained in:
parent
de792ba3c2
commit
4463ced8ba
1 changed files with 5 additions and 4 deletions
|
@ -236,12 +236,13 @@ class Display:
|
||||||
|
|
||||||
def _safe_output(self, msg, stderr=False):
|
def _safe_output(self, msg, stderr=False):
|
||||||
|
|
||||||
|
encoding='utf-8'
|
||||||
if not stderr and sys.stdout.encoding:
|
if not stderr and sys.stdout.encoding:
|
||||||
msg = to_bytes(msg, sys.stdout.encoding)
|
encoding = sys.stdout.encoding
|
||||||
elif stderr and sys.stderr.encoding:
|
elif stderr and sys.stderr.encoding:
|
||||||
msg = to_bytes(msg, sys.stderr.encoding)
|
encoding = sys.stderr.encoding
|
||||||
else:
|
|
||||||
msg = to_bytes(msg)
|
msg = to_bytes(msg, encoding)
|
||||||
|
|
||||||
return msg
|
return msg
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue