Actually add spaces after words. ^^
This commit is contained in:
parent
c643308ec7
commit
379c2d4c8c
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ for status in timeline:
|
||||||
curstr = ""
|
curstr = ""
|
||||||
|
|
||||||
for word in text.split(" "):
|
for word in text.split(" "):
|
||||||
curstr += word
|
curstr += word + " "
|
||||||
if word[-1] in "!?.":
|
if word[-1] in "!?.":
|
||||||
tstring += translate.Translator(to_lang=a[0]).translate(curstr) + " "
|
tstring += translate.Translator(to_lang=a[0]).translate(curstr) + " "
|
||||||
curstr = ""
|
curstr = ""
|
||||||
|
|
Loading…
Reference in a new issue