diff --git a/git.py b/git.py index 990ea3fb..80b91016 100644 --- a/git.py +++ b/git.py @@ -7,6 +7,7 @@ __email__ = "bob@freedombone.net" __status__ = "Production" import os +import urllib.parse def gitFormatContent(content: str) -> str: @@ -15,7 +16,7 @@ def gitFormatContent(content: str) -> str: """ contentStr = content.replace('
', '\n').replace('
', '\n') contentStr = contentStr.replace('

', '').replace('

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