diff --git a/bcpandas/utils.py b/bcpandas/utils.py index 5b3250f..06d8c01 100644 --- a/bcpandas/utils.py +++ b/bcpandas/utils.py @@ -269,7 +269,7 @@ def run_cmd(cmd: List[str], *, print_output: bool) -> Tuple[int, List[str]]: stdout=PIPE, stderr=STDOUT, encoding="utf-8", - errors="utf-8", + errors="replace", shell=with_shell, ) stdout = []