Skip to content

Commit

Permalink
more verbose error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
NikhilNarayana committed Dec 6, 2019
1 parent 1806577 commit 3c77d0f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion meleeuploader/youtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ def upload_service(insert_request):
print("Waiting 10 minutes before retrying to avoid the limit")
sleep(600)
else:
print("")
print(e)
return False, None
except retry_exceptions as e:
print(f"A retriable error occurred: {e}")

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from os import path

here = path.abspath(path.dirname(__file__))
version = '1.17.1'
version = '1.17.2'

long_des = ""
with open(path.join(here, 'README.md')) as f:
Expand Down

0 comments on commit 3c77d0f

Please sign in to comment.