1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Correct typo

This commit is contained in:
Toshio Kuratomi 2015-10-08 08:44:25 -07:00
parent 2f5e817007
commit d1b98ec776

View file

@ -269,7 +269,7 @@ class Display:
def _output_encoding(stderr=False):
if stderr:
return sys.stderr.encoding or 'utf-8'
return sys.stout.encoding or 'utf-8'
return sys.stdout.encoding or 'utf-8'
def _set_column_width(self):
if os.isatty(0):