diff options
Diffstat (limited to 'dev/format_check.py')
-rw-r--r-- | dev/format_check.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dev/format_check.py b/dev/format_check.py index de099516f..9c2f04066 100644 --- a/dev/format_check.py +++ b/dev/format_check.py @@ -45,7 +45,8 @@ if __name__ == "__main__": item["raw_path"], ], encoding="utf-8", - capture_output=True, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, ) if run_result.returncode != 0: # erlfmt sometimes returns a non-zero status code with no |