aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--slack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/slack.py b/slack.py
index da0a8b3..e919637 100644
--- a/slack.py
+++ b/slack.py
@@ -5,7 +5,7 @@ app.config.from_envvar('CONF')
@app.route("/echo", methods=['POST'])
def echo():
d = {'response_type': 'in_channel',
- 'text': "I'm the echo bot!"
+ 'text': "I'm the echo bot!",
'attachments': [
{'text':request.form['text']}
]