Skip to content

Commit 87ca9a9

Browse files
committed
replace wait() by communicate() to launch bindiff
1 parent 74f01a0 commit 87ca9a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bindiff/bindiff.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,8 @@ def raw_diffing(p1_path: Union[Path, str], p2_path: Union[Path, str], out_diff:
180180

181181
logging.debug(f"run diffing: {' '.join(cmd_line)}")
182182
process = subprocess.Popen(cmd_line, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
183-
retcode = process.wait()
183+
out, err = process.communicate()
184+
retcode = process.returncode
184185
if retcode != 0:
185186
logging.error(f"differ terminated with error code: {retcode}")
186187
return False

0 commit comments

Comments
 (0)