Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Commit

Permalink
fix typo that affected error handling for file upload/download
Browse files Browse the repository at this point in the history
  • Loading branch information
nhammond committed Jul 5, 2017
1 parent 989cbdb commit bdb5200
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loomengine/utils/filemanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def _execute_with_retries(retriable_function,
try:
retriable_function()
break
except (ExceptionGoogleCloudError, SocketError) as e:
except (GoogleCloudError, SocketError) as e:
attempt += 1
if attempt > max_retries:
raise
Expand Down

0 comments on commit bdb5200

Please sign in to comment.