mirror of
https://github.com/servo/servo.git
synced 2025-06-10 09:33:13 +00:00
Auto merge of #28169 - servo:jdm-patch-49, r=jdm
Fix some residual python2isms Fixes nightly and doc builds.
This commit is contained in:
commit
1b58747ce1
2 changed files with 3 additions and 2 deletions
|
@ -644,7 +644,7 @@ class PackageCommands(CommandBase):
|
|||
break
|
||||
sha256_digest.update(data)
|
||||
package_hash = sha256_digest.hexdigest()
|
||||
package_hash_fileobj = io.BytesIO(package_hash)
|
||||
package_hash_fileobj = io.BytesIO(package_hash).encode('utf-8')
|
||||
latest_hash_upload_key = '{}/servo-latest.{}.sha256'.format(nightly_dir, extension)
|
||||
|
||||
s3.upload_file(package, BUCKET, package_upload_key)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue