From 7c6f92b3c70d372fa01f68968dc4830cf0ff66f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Wilczy=C5=84ski?= Date: Thu, 20 Apr 2017 13:48:02 +0200 Subject: [PATCH] Removed unnecessary backslash --- md_cleanup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/md_cleanup.py b/md_cleanup.py index acd9721..226c897 100644 --- a/md_cleanup.py +++ b/md_cleanup.py @@ -21,7 +21,7 @@ else: content = file.read() content = re.sub(r"`\*(.*)`[\\]?", r"*\g<1>", content) content = re.sub(r"!(\w+)", r"\g<1>", content) - content = re.sub(r"\* ", r"\* ", content) + content = re.sub(r"\* ", r"* ", content) file.seek(0) file.truncate() file.write(content)