Merge branch 'main' of ssh://code.freedombone.net:2222/bashrc/epicyon into main

main
Bob Mottram 2021-03-03 22:06:22 +00:00
commit 13b2d9956b
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ def _removeEmojiFromText(sayText: str) -> str:
for word in wordsList:
if word.startswith(':'):
if word.endswith(':'):
replacements[word] = word.replace('*', '')
replacements[word] = ''
for replaceStr, newStr in replacements.items():
sayText = sayText.replace(replaceStr, newStr)
return sayText.replace(' ', ' ').strip()