From 8fcad7beb1b98af740c341efd2b7313f30a517f7 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Mon, 9 Mar 1998 14:48:00 +0000 Subject: [PATCH] Don't generate a \label{} here. --- Doc/tools/modindex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tools/modindex.py b/Doc/tools/modindex.py index 0209a1a3f6..263f0bf8d5 100755 --- a/Doc/tools/modindex.py +++ b/Doc/tools/modindex.py @@ -37,7 +37,7 @@ def main(): base, ext = os.path.splitext(infile) outfile = base + ".ind" ofp = open(outfile, "w") - ofp.write("\\begin{theindex}\n\label{modindex}\n\n") + ofp.write("\\begin{theindex}\n\n") lines = ifp.readlines() for i in range(len(lines)): if lines[i][0] == '\\': -- 2.50.0