summaryrefslogtreecommitdiff
path: root/diff.py
diff options
context:
space:
mode:
authorTal Hayon <talhayon1@gmail.com>2023-02-01 16:15:31 +0200
committerTal Hayon <talhayon1@gmail.com>2023-02-01 16:37:45 +0200
commitd5d32236a0b9c1f666f87f4d38c5e027d2588831 (patch)
tree061b6443a39c183b8cd39726f1bd3c3ed37a5238 /diff.py
parent4172847eff2658c4114fd1ea8a11fa720c160591 (diff)
Print stderr in diff.py when make fails
Diffstat (limited to 'diff.py')
-rw-r--r--diff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/diff.py b/diff.py
index 676e1c24a4..4bc740d332 100644
--- a/diff.py
+++ b/diff.py
@@ -3394,7 +3394,7 @@ def main() -> None:
if ret.returncode != 0:
display.update(
ret.stderr.decode("utf-8-sig", "replace")
- or ret.stdout.decode("utf-8-sig", "replace"),
+ + ret.stdout.decode("utf-8-sig", "replace"),
error=True,
)
continue