clean up example and requirements

This commit is contained in:
Ryan Huber 2014-12-08 15:31:55 -08:00
parent 3f2890d6e0
commit e80a3459b2
3 changed files with 4 additions and 3 deletions

View file

@ -4,5 +4,5 @@ outputs = []
def process_message(data):
if data['channel'].startswith("D"):
outputs.append([data['channel'], "from repeat1: " + data['text']])
outputs.append([data['channel'], "from repeat1 \"{}\" in channel {}".format(data['text'], data['channel']) ])