Skip to content

Commit

Permalink
improved error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
espona committed Dec 7, 2020
1 parent ab99751 commit cb16d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckanext/cloudstorage/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def upload(self, id, max_size=10):
print(traceback.format_exc())
raise v
except types.InvalidCredsError as err:
print('EXCEPTION: {0}'.format(err))
print(traceback.format_exc())
raise err

elif self._clear and self.old_filename and not self.leave_files:
Expand Down

0 comments on commit cb16d52

Please sign in to comment.