mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 06:34:16 +00:00
fix text encoding for subprocesses
This commit is contained in:
parent
79b19ddf35
commit
c68543af74
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue