diff --git a/files/helpers/images.py b/files/helpers/images.py index dd867d03da..c228d3000b 100644 --- a/files/helpers/images.py +++ b/files/helpers/images.py @@ -104,7 +104,8 @@ def upload_video(file): with open(file_path, 'rb') as f: try: r = requests.post('https://api.imgur.com/3/upload', headers=headers, files=[], data={"video": f}) - r.raise_for_status() + print(r.text) + #r.raise_for_status() resp = r.json()['data'] except requests.HTTPError as e: