Merge "Don't check the stderr output from bsdiff/imgdiff"

This commit is contained in:
Tianjie Xu 2018-01-23 06:10:46 +00:00 committed by Gerrit Code Review
commit 07a4299182
1 changed files with 1 additions and 1 deletions

View File

@ -1385,7 +1385,7 @@ class Difference(object):
p.kill()
th.join()
if err or p.returncode != 0:
if p.returncode != 0:
print("WARNING: failure running %s:\n%s\n" % (
diff_program, "".join(err)))
self.patch = None