Skip to content

Commit

Permalink
typo fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmccully committed Feb 28, 2025
1 parent 9e7c955 commit 01f29ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion banzai/utils/fits_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def download_from_s3(file_info, context, is_raw_frame=False):
archive_auth_header = context.ARCHIVE_AUTH_HEADER
response = requests.get(url, headers=archive_auth_header)
try:
response.raise_fot_status()
response.raise_for_status()
except requests.exceptions.HTTPError as e:
message = 'Error downloading file from archive.'
if int(response.status_code) == 429:
Expand Down

0 comments on commit 01f29ce

Please sign in to comment.