From 80983a861654c92804597733e1fd6d318e045134 Mon Sep 17 00:00:00 2001 From: Matt Cengia Date: Thu, 30 Apr 2026 10:02:29 +1000 Subject: [PATCH] Looks like this `.md` crept in as part of the MkDocs migration Original line: https://github.com/benoitc/gunicorn/blob/f9df39f/docs/source/run.rst?plain=1#L43 New line: https://github.com/benoitc/gunicorn/blob/19a2efe/docs/content/run.md?plain=1#L38 --- docs/content/run.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/run.md b/docs/content/run.md index ddb99435..02494b5e 100644 --- a/docs/content/run.md +++ b/docs/content/run.md @@ -35,7 +35,7 @@ def app(environ, start_response): status = "200 OK" response_headers = [ ("Content-type", "text/plain"), - ("Content-Length", str(len(data.md))) + ("Content-Length", str(len(data))) ] start_response(status, response_headers) return iter([data])