master
Bob Mottram 2019-08-19 12:11:31 +01:00
parent 6373e8b982
commit 273956c3e8
1 changed files with 2 additions and 2 deletions

View File

@ -156,9 +156,9 @@ def addHtmlTags(baseDir: str,httpPrefix: str, \
wordStr=words[wordIndex]
if wordStr.endswith('.'):
if not wordStr.startswith('@'):
words[wordIndex]=words[wordIndex][:-1]
words[wordIndex]=wordStr[:-1]
if wordStr.startswith('.'):
words[wordIndex]=words[wordIndex][1:]
words[wordIndex]=wordStr[1:]
replaceMentions={}
replaceHashTags={}
replaceEmoji={}