From dfa8d3deba497037e164cbdac604ab998e5c09c6 Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Sat, 30 Jun 2018 19:53:19 -0500 Subject: [PATCH] Refine the output. --- lugito | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lugito b/lugito index ecf5f47..2224f29 100755 --- a/lugito +++ b/lugito @@ -112,7 +112,7 @@ def ircbot(message): # Put the task status in the message. sendmessage = sendmessage + ", " + taskinfo["statusName"] + "\x03" - sendmessage = sendmessage + "\x033]\x03" + sendmessage = sendmessage + "\x033]\x03 " # Put the title in there as well. sendmessage = sendmessage + taskinfo["title"].strip() + ": " @@ -124,7 +124,7 @@ def ircbot(message): sendnotice(sendmessage) # If someone wrote something like "Tblah", obviously that's not right. except ValueError: - sendnotice("Error: " + item.strip() + "is an invalid task reference.") + sendnotice("\x034Error: " + item.strip() + "is an invalid task reference.\x03") def listenirc(): while True: