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']) ])

View file

@ -1,2 +1,3 @@
pyyaml
websocket-client
git+ssh://git@github.com/slackhq/python-slackclient.git@master#egg=python-slackclient
git+https://github.com/slackhq/python-slackclient.git

View file

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import sys
sys.dont_write_bytecode = True