Skip to content

Commit 061c89f

Browse files
authored
fix: Missing button text for PostScript in RFC (#7889)
Resolves #7879 Signed-off-by: Seonghyeon Cho <seonghyeoncho96@gmail.com>
1 parent 23e5307 commit 061c89f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ietf/doc/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1046,6 +1046,8 @@ def build_file_urls(doc: Union[Document, DocHistory]):
10461046

10471047
file_urls = []
10481048
for t in found_types:
1049+
if t == "ps": # Postscript might have been submitted but should not be displayed in the list of URLs
1050+
continue
10491051
label = "plain text" if t == "txt" else t
10501052
file_urls.append((label, base + doc.name + "." + t))
10511053

0 commit comments

Comments
 (0)