Skip to content

Commit fb2f37c

Browse files
committed
add back the whietspace character that we eat
1 parent 5092d64 commit fb2f37c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misc/gen_blog_post_html.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def convert(src: str) -> str:
128128
)
129129
# Note the leading space to avoid stomping on strings that contain #\d in the middle (such as
130130
# links to PRs in other repos)
131-
h = re.sub(r" #([0-9]+)", r'PR <a href="https://github.com/python/mypy/pull/\1">\1</a>', h)
131+
h = re.sub(r" #([0-9]+)", r' PR <a href="https://github.com/python/mypy/pull/\1">\1</a>', h)
132132
h = re.sub(r"\) \(PR", ", PR", h)
133133

134134
# Markdown links

0 commit comments

Comments
 (0)