We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8cf1dc commit 413c00cCopy full SHA for 413c00c
1 file changed
bin/build-index.py
@@ -175,7 +175,8 @@ def escape_html(text):
175
176
metadata["dir"] = entry.name
177
metadata["currentWork"] = False
178
- issues_files = sorted(glob.glob(os.path.join(entry.path, "issues-*.html")))
+ issues_files = sorted(f for f in glob.glob(os.path.join(entry.path, "issues-*.html"))
179
+ if not f.endswith(".bsi.html"))
180
metadata["issues"] = [os.path.basename(f) for f in issues_files]
181
specgroups[metadata["shortname"]].append(metadata)
182
0 commit comments