diff options
author | Bessenyei Balázs Donát <bessbd@apache.org> | 2021-06-25 15:38:19 +0200 |
---|---|---|
committer | Bessenyei Balázs Donát <bessbd@gmail.com> | 2021-06-25 15:41:27 +0200 |
commit | d529d7ddaecd59db38d8c4d55cfa5a35672060c9 (patch) | |
tree | 79a7f2ec0bcfcf755610edc18a61154f4efa0f2c /dev/format_check.py | |
parent | 15cbb5502503c6e4d786bf0a85b7c225ccd14f71 (diff) | |
download | couchdb-fix-formatter-python-compatibility.tar.gz |
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 |