Merge "Don't check the stderr output from bsdiff/imgdiff" am: 07a4299182

am: 759dcbd1ed

Change-Id: If17dcdb8daaf74325bcbc9ae2ef0ba1932a30e94
This commit is contained in:
Tianjie Xu 2018-01-23 18:48:09 +00:00 committed by android-build-merger
commit 6b3337db4a
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