1
0
Fork 0
mirror of synced 2024-09-28 07:11:14 +12:00

fix text encoding for subprocesses

This commit is contained in:
Nick Sweeting 2020-06-30 01:14:35 -04:00
parent 79b19ddf35
commit c68543af74

View file

@ -17,7 +17,7 @@ from .config import OUTPUT_PERMISSIONS
def run(*args, input=None, capture_output=True, text=True, timeout=None, check=False, **kwargs):
def run(*args, input=None, capture_output=True, text=False, timeout=None, check=False, **kwargs):
"""Patched of subprocess.run to fix blocking io making timeout=innefective"""
if input is not None: