Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 9cc2a8e

Browse files
Update bytes str code (#39275)
1 parent 999e5e5 commit 9cc2a8e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tools/fuchsia/merge_and_upload_debug_symbols.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ def CheckCIPDPackageExists(package_name, tag):
6464
tag,
6565
]
6666
stdout = subprocess.check_output(command)
67+
stdout = stdout if isinstance(stdout, str) else stdout.decode('UTF-8')
6768
match = re.search(r'No matching instances\.', stdout)
6869
if match:
6970
return False

0 commit comments

Comments
 (0)