twitter: ensure we have a space after the status icon

Change-Id: Ic0acd0f2f1587b51dc35148dad833ce9608e6553
This commit is contained in:
Ian Wienand 2022-07-14 10:26:59 +10:00
parent a269bac966
commit 5cc27bd9ee
1 changed files with 2 additions and 2 deletions

View File

@ -281,7 +281,7 @@ class Tweet(UpdateInterface):
def notice(self, msg=None):
# pushpin (notice board)
self.update('\U0001f4cc' + msg)
self.update('\U0001f4cc ' + msg)
def log(self, msg=None):
# wood (log)
@ -289,7 +289,7 @@ class Tweet(UpdateInterface):
def ok(self, msg=None):
if msg:
self.update('\u2705\ufe0f' + msg)
self.update('\u2705\ufe0f ' + msg)
else:
self.update('\u2705\ufe0f Everything back to normal')