From 41880b881d55705f55e86c12b5eeaaf51b3efe3b Mon Sep 17 00:00:00 2001 From: deprrous Date: Sun, 26 Jul 2026 20:08:21 +0800 Subject: [PATCH] Fix CGI Python examples in howto docs --- docs/manual/howto/cgi.xml | 2 +- docs/manual/howto/cgi.xml.fr | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/manual/howto/cgi.xml b/docs/manual/howto/cgi.xml index 4816c121a20..76ae72c6133 100644 --- a/docs/manual/howto/cgi.xml +++ b/docs/manual/howto/cgi.xml @@ -526,7 +526,7 @@ import os print("Content-type: text/html\n") for key, value in os.environ.items(): -print(f"{key} --> {value}<br>") + print(f"{key} --> {value}<br>") diff --git a/docs/manual/howto/cgi.xml.fr b/docs/manual/howto/cgi.xml.fr index c643ea18652..359f937b960 100644 --- a/docs/manual/howto/cgi.xml.fr +++ b/docs/manual/howto/cgi.xml.fr @@ -365,7 +365,7 @@ print("Hello, World.") -chmod a+x first.py +chmod a+x premier.py @@ -562,7 +562,7 @@ import os print("Content-type: text/html\n") for key, value in os.environ.items(): -print(f"{key} --> {value}<br>") + print(f"{key} --> {value}<br>")