This commit is contained in:
Ben Harris 2019-06-26 12:21:13 -04:00
parent 2df0ff2a66
commit bb80546e45
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ def eventloop(chan, nick, msg):
words = re.split("[ \t\s]+", msg)
if len(words) > 0 and nick != "tooter":
if words[0] == "!toot":
status = emoji.emojize("".join(words[1:]), use_aliases=True)
status = emoji.emojize(" ".join(words[1:]), use_aliases=True)
print(f"{status} posted by {nick}")
if chan == "team":
res = tildeteam.toot(status)