From 6a4d947d18e7322b02ade9383ede33a34a4d29d3 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 2 May 2020 17:24:00 +0000 Subject: [PATCH] Typo --- git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git.py b/git.py index 5d09916d..e7384046 100644 --- a/git.py +++ b/git.py @@ -15,7 +15,7 @@ def gitFormatContent(content: str) -> str: """ contentStr = content.replace('
', '\n').replace('
', '\n') contentStr = contentStr.replace('

', '').replace('

', '\n') - contentSTr = contentStr.replace('<', '<').replace('>', '>') + contentStr = contentStr.replace('<', '<').replace('>', '>') if 'From ' in contentStr: contentStr = 'From ' + contentStr.split('From ', 1)[1] return contentStr