From 5a87a6011436edaf549bfa6928adbaf7a7ea1bc2 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 19 Feb 2020 18:59:42 +0000 Subject: [PATCH] Replace quotes --- content.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content.py b/content.py index 303cce70d..a6c18bb96 100644 --- a/content.py +++ b/content.py @@ -21,7 +21,7 @@ def switchWords(baseDir: str,nickname: str,domain: str,content: str) -> str: return content with open(switchWordsFilename, 'r') as fp: for line in fp: - replaceStr=line.replace('\n','') + replaceStr=line.replace('\n','').replace('"','') wordTransform=None if '->' in replaceStr: wordTransform=replaceStr.split('->')