| commit | cb8bda6d37661f8440b86a78b5e9f059ace2a2df | [log] [tgz] |
|---|---|---|
| author | Rico Wind <ricow@google.com> | Wed Feb 23 14:03:38 2022 +0100 |
| committer | Rico Wind <ricow@google.com> | Wed Feb 23 13:06:04 2022 +0000 |
| tree | 97fea364a0e324ea4c00bfd4612aa4e77988d560 | |
| parent | c957d03bb309821ed23320f1099f56b3b812b4fa [diff] |
Fix hash comparison for internal test Change-Id: Iaf177e98ec6f13c19cd62f02bfe3915ba8c5e25f
diff --git a/tools/utils.py b/tools/utils.py index eb7849b..9dc1147 100644 --- a/tools/utils.py +++ b/tools/utils.py
@@ -365,7 +365,7 @@ cmd = [get_gsutil(), 'cat', destination] PrintCmd(cmd) try: - return subprocess.check_output(cmd) + return str(subprocess.check_output(cmd)) except subprocess.CalledProcessError as e: if ignore_errors: return ''