mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-05 10:20:26 -07:00
Merge pull request #268 from bucklander/bwallander_issue_266
Fixing issue with UTF-8 conversion in Python3 for GCS uploads
This commit is contained in:
commit
f9c8c18f36
1 changed files with 1 additions and 1 deletions
|
@ -251,7 +251,7 @@ def upload_file(module, client, src, dest):
|
|||
try:
|
||||
bucket = client.get_bucket(module.params['bucket'])
|
||||
blob = Blob(dest, bucket)
|
||||
with open(src, "r") as file_obj:
|
||||
with open(src, "rb") as file_obj:
|
||||
blob.upload_from_file(file_obj)
|
||||
return blob_to_dict(blob)
|
||||
except google.cloud.exceptions.GoogleCloudError as e:
|
||||
|
|
Loading…
Add table
Reference in a new issue