Skip to content

Commit 599dbcd

Browse files
authored
Merge pull request #40309 from ahoppen/pr/decode-update-checkout-error
[update-checkout] Decode stderr from failed update command
2 parents fc3a124 + 02d2978 commit 599dbcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/update_checkout/update_checkout/update_checkout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def check_parallel_results(results, op):
7070
print("%s failed (ret=%d): %s" % (r.repo_path, r.ret, r))
7171
fail_count += 1
7272
if r.stderr:
73-
print(r.stderr)
73+
print(r.stderr.decode('utf-8'))
7474
return fail_count
7575

7676

0 commit comments

Comments
 (0)