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:
parent
2f5e817007
commit
d1b98ec776
1 changed files with 1 additions and 1 deletions
|
@ -269,7 +269,7 @@ class Display:
|
||||||
def _output_encoding(stderr=False):
|
def _output_encoding(stderr=False):
|
||||||
if stderr:
|
if stderr:
|
||||||
return sys.stderr.encoding or 'utf-8'
|
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):
|
def _set_column_width(self):
|
||||||
if os.isatty(0):
|
if os.isatty(0):
|
||||||
|
|
Loading…
Reference in a new issue