Skip to content

Commit 2b3815c

Browse files
authored
the cgi module was removed from Python3.13 (#1578)
1 parent bd25fc5 commit 2b3815c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

devtools/batchbuild.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import string
1010
import subprocess
1111
import sys
12-
import cgi
12+
import html
1313

1414
class BuildDesc:
1515
def __init__(self, prepend_envs=None, variables=None, build_type=None, generator=None):
@@ -195,12 +195,12 @@ def generate_html_report(html_report_path, builds):
195195
for variable in variables:
196196
build_types = sorted(build_types_by_variable[variable])
197197
nb_build_type = len(build_types_by_variable[variable])
198-
th_vars.append('<th colspan="%d">%s</th>' % (nb_build_type, cgi.escape(' '.join(variable))))
198+
th_vars.append('<th colspan="%d">%s</th>' % (nb_build_type, html.escape(' '.join(variable))))
199199
for build_type in build_types:
200-
th_build_types.append('<th>%s</th>' % cgi.escape(build_type))
200+
th_build_types.append('<th>%s</th>' % html.escape(build_type))
201201
tr_builds = []
202202
for generator in sorted(builds_by_generator):
203-
tds = [ '<td>%s</td>\n' % cgi.escape(generator) ]
203+
tds = [ '<td>%s</td>\n' % html.escape(generator) ]
204204
for variable in variables:
205205
build_types = sorted(build_types_by_variable[variable])
206206
for build_type in build_types:

0 commit comments

Comments
 (0)