Remove brackets

merge-requests/21/head
Bob Mottram 2021-03-03 21:30:01 +00:00
parent a8df0dab80
commit 108e27ca95
1 changed files with 3 additions and 1 deletions

View File

@ -94,7 +94,9 @@ def _speakerPronounce(baseDir: str, sayText: str, translate: {}) -> str:
":-)": '. ' + translate["smile"],
":-(": '. ' + translate["sad face"],
";-)": '. ' + translate["wink"],
"*": ""
"*": "",
"(": ",",
")": ","
}
if os.path.isfile(pronounceFilename):
with open(pronounceFilename, 'r') as fp: