diff options
-rw-r--r-- | python/fatcat_web/routes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/routes.py b/python/fatcat_web/routes.py index e2c90d52..b790b807 100644 --- a/python/fatcat_web/routes.py +++ b/python/fatcat_web/routes.py @@ -1476,7 +1476,7 @@ def release_citeproc(ident: str) -> AnyResponse: # reports about it. these are not linked to, only show up from bots. sentry_sdk.set_level("warning") sentry_sdk.capture_exception(e) - abort(500, e) + abort(400, e) try: cite = citeproc_csl(csl, style, is_html) except citeproc_styles.StyleNotFoundError as e: |