Skip to content

Commit

Permalink
fix contact email address for submission error
Browse files Browse the repository at this point in the history
  • Loading branch information
greenjune-ship-it committed Dec 12, 2023
1 parent 908091b commit 9c43eca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flask_app/sp_app/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ def _check_submission():
'message': '<strong class="text-danger">ERROR: an unexpected error has occured when trying to run QC on your submission.</strong><br>'
'Please ensure that you are uploading a properly formatted datasheet.<br>'
'If the error persists, please get in contact at: '
'<a href="mailto:{{ email_address }}?Subject=submission error">{{ email_address }}</a>'
f"{os.getenv('CONTACT_EMAIL_ADDRESS')}<br>"
f'The full backend traceback is:<br><br>{tb}',
"error_type": "unhandled_error",
"response_type": "datasheet",
Expand Down Expand Up @@ -563,7 +563,7 @@ def _check_submission():
'message': '<strong class="text-danger">ERROR: an unexpected error has occured when trying to run QC on your submission.</strong><br>'
'Please ensure that you are uploading a properly formatted datasheet.<br>'
'If the error persists, please get in contact at: '
'<a href="mailto:{{ email_address }}?Subject=submission error">{{ email_address }}</a>'
f"{os.getenv('CONTACT_EMAIL_ADDRESS')}<br>"
f'The full backend traceback is:<br><br>{tb}',
"error_type": "unhandled_error",
"response_type": "datasheet",
Expand Down

0 comments on commit 9c43eca

Please sign in to comment.