mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-08 06:00:51 -07:00
Fix Cloudinary upload for Python 2
This commit is contained in:
parent
d0f28883aa
commit
7f9d46eac3
1 changed files with 1 additions and 1 deletions
|
@ -737,7 +737,7 @@ def upload_to_cloudinary(img_data, img_title='', rating_key='', fallback=''):
|
|||
)
|
||||
|
||||
try:
|
||||
response = upload(img_data,
|
||||
response = upload((img_title, img_data),
|
||||
public_id='{}_{}'.format(fallback, rating_key),
|
||||
tags=['tautulli', fallback, str(rating_key)],
|
||||
context={'title': img_title, 'rating_key': str(rating_key), 'fallback': fallback})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue