fnp
/
audio.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Disable youtube publish button when in volume.
[audio.git]
/
src
/
apiclient
/
models.py
diff --git
a/src/apiclient/models.py
b/src/apiclient/models.py
index
cc40143
..
49403f0
100644
(file)
--- a/
src/apiclient/models.py
+++ b/
src/apiclient/models.py
@@
-57,11
+57,14
@@
class YouTubeToken(models.Model):
'x-upload-content-type': 'application/octet-stream',
} if resumable_file_path else {}
)
'x-upload-content-type': 'application/octet-stream',
} if resumable_file_path else {}
)
+ response.raise_for_status()
if resumable_file_path:
location = response.headers['Location']
with open(resumable_file_path, 'rb') as f:
if resumable_file_path:
location = response.headers['Location']
with open(resumable_file_path, 'rb') as f:
- re
turn
session.put(
+ re
sponse =
session.put(
url=location,
data=StreamingIterator(file_size, f),
headers={"Content-Type": "application/octet-stream"},
)
url=location,
data=StreamingIterator(file_size, f),
headers={"Content-Type": "application/octet-stream"},
)
+ response.raise_for_status()
+ return response