From c68543af74ff7f49370e90945519b429b0e708a6 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Tue, 30 Jun 2020 01:14:35 -0400 Subject: [PATCH] fix text encoding for subprocesses --- archivebox/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/system.py b/archivebox/system.py index 4f238ceb..d49037c7 100644 --- a/archivebox/system.py +++ b/archivebox/system.py @@ -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: