Skip to content

Commit

Permalink
Cleaner formatting of .who results.
Browse files Browse the repository at this point in the history
  • Loading branch information
chotee committed Feb 27, 2015
1 parent 402e0b4 commit 91bded7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions checkin.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@ def checkwho(bot, trigger):
if not WHO:
bot.say('Nobody currently checked in at the space')
else:
for people in WHO:
peoplelist += people + ','
peoplelist = ", ".join(WHO)
bot.say(peoplelist)

@willie.module.commands('anoncheckin')
Expand Down

0 comments on commit 91bded7

Please sign in to comment.