From f2b42707ddce8e4c5a53dff07a22ba2b5c2a4627 Mon Sep 17 00:00:00 2001 From: Paul Brand Date: Mon, 6 May 2024 13:08:55 +0200 Subject: [PATCH] Fix documentation for redirect endpoint --- atests/http_server/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atests/http_server/core.py b/atests/http_server/core.py index 6ec313d..1647512 100644 --- a/atests/http_server/core.py +++ b/atests/http_server/core.py @@ -179,8 +179,8 @@ def redirect_to(): args_dict = request.args.items() args = CaseInsensitiveDict(args_dict) - # We need to build the response manually and convert to UTF-8 to prevent - # werkzeug from "fixing" the URL. This endpoint should set the Location + # We need to build the response manually. + # This endpoint should set the Location # header to the exact string supplied. response = app.make_response("") response.status_code = 302