Skip to content

Commit eada3c9

Browse files
committed
Remove syntax warning due to invalid escape sequence
1 parent 1be4b27 commit eada3c9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

link-verifier/verify-links.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def parse_file(html_file):
174174
return HtmlFile(html_file)
175175

176176
def html_name_from_markdown(filename):
177-
md_pattern = re.compile("\.md$", re.IGNORECASE)
177+
md_pattern = re.compile(r"\.md$", re.IGNORECASE)
178178
return md_pattern.sub('.html', filename)
179179

180180
def create_html(markdown_file):

0 commit comments

Comments
 (0)