Browse Source

fix text encoding for subprocesses

Nick Sweeting 5 years ago
parent
commit
c68543af74
1 changed files with 1 additions and 1 deletions
  1. 1 1
      archivebox/system.py

+ 1 - 1
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"""
     """Patched of subprocess.run to fix blocking io making timeout=innefective"""
 
 
     if input is not None:
     if input is not None: