This is an automated email from the ASF dual-hosted git repository. wave pushed a commit to branch add-explicit-charset in repository https://gitbox.apache.org/repos/asf/tooling-trusted-releases.git
commit 3a9e2ad9aef9e11dae69a004cc64d782483148ec Author: Dave Fisher <[email protected]> AuthorDate: Wed Mar 4 12:20:07 2026 -0800 Fix check --- atr/post/upload.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/atr/post/upload.py b/atr/post/upload.py index ebb846fe..c884111d 100644 --- a/atr/post/upload.py +++ b/atr/post/upload.py @@ -222,7 +222,9 @@ def _construct_svn_url(committee_name: str, area: shared.upload.SvnArea, path: s def _json_error(message: str, status: int) -> web.WerkzeugResponse: - return response.Response(json.dumps({"error": message}), status=status, content_type="application/json; charset=utf-8") + return response.Response( + json.dumps({"error": message}), status=status, content_type="application/json; charset=utf-8" + ) def _json_success(data: dict[str, str], status: int = 200) -> web.WerkzeugResponse: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
