From 2ca38cb2c1c3c9f5641e1a840f29c1a017ea962c Mon Sep 17 00:00:00 2001 From: un-pogaz <46523284+un-pogaz@users.noreply.github.com> Date: Mon, 17 Nov 2025 09:33:57 +0100 Subject: [PATCH] http_server import (manual) --- setup/publish.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/publish.py b/setup/publish.py index 7fed3419d5..6e1e0f85ce 100644 --- a/setup/publish.py +++ b/setup/publish.py @@ -242,7 +242,7 @@ class Manual(Command): def serve_manual(self, root): os.chdir(root) - from polyglot.http_server import HTTPServer, SimpleHTTPRequestHandler + from http.server import HTTPServer, SimpleHTTPRequestHandler HandlerClass = SimpleHTTPRequestHandler ServerClass = HTTPServer Protocol = 'HTTP/1.0'