Fix up !latest

This commit is contained in:
Robert Miles 2018-12-10 17:33:05 -05:00
parent f837cdfe6d
commit 2a7cdebbe5
1 changed files with 2 additions and 2 deletions

4
bot.py
View File

@ -78,10 +78,10 @@ class CosmicBot(teambot.Handler):
if count > 5:
count = 5 # don't spam the channel
self.say(channel, "{}: Latest {} {}. (See cosmic.voyage for more!)".format(nick, count, (count == 1 and "entry" or "entries")))
output = subprocess.check_output(["/usr/local/bin/latest",str(count)).decode("ascii").split("\n")
output = subprocess.check_output(["/usr/local/bin/latest",str(count)]).decode("ascii").split("\n")
output = filter(None,output)
for line in output:
self.say(channel,"{}{})".format(nick,line))
self.say(channel,"{}: {}".format(nick,line))
if __name__=="__main__":
channels = "#cosmic".split()