From edacd0371360496ec27ccdc0d091b6b87510ebf2 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 2 May 2020 17:50:02 +0000 Subject: [PATCH] Forward slash --- git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git.py b/git.py index 89f34f97..990ea3fb 100644 --- a/git.py +++ b/git.py @@ -13,7 +13,7 @@ def gitFormatContent(content: str) -> str: """ replace html formatting, so that it's more like the original patch file """ - contentStr = content.replace('
', '\n').replace('
', '\n') + contentStr = content.replace('
', '\n').replace('
', '\n') contentStr = contentStr.replace('

', '').replace('

', '\n') contentStr = contentStr.replace('<', '<').replace('>', '>') if 'From ' in contentStr: