about summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xtooter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tooter.py b/tooter.py
index 21e54cb..98248b5 100755
--- a/tooter.py
+++ b/tooter.py
@@ -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)