]> git.cworth.org Git - turbot/blobdiff - turbot/interaction.py
Make "/help me" self-documenting
[turbot] / turbot / interaction.py
index f784a0266203862711d4c20f16656195f712a09f..8cba346a2122a96c1e2bd9740f78977fd597db7c 100644 (file)
@@ -1338,6 +1338,7 @@ def help_command(turb, body, args):
     channel_name = body['channel_name'][0]
     channel_id = body['channel_id'][0]
     response_url = body['response_url'][0]
+    user_id = body['user_id'][0]
 
     # Process "/help me" first. It calls out to have_you_tried rather
     # than going through our help system.
@@ -1345,7 +1346,8 @@ def help_command(turb, body, args):
     # Also, it reports in the current channel, (where all other help
     # output is reported privately to the invoking user).
     if args == "me":
-        to_try = have_you_tried()
+        to_try = "In response to <@{}> asking `/help me`:\n\n{}\n".format(
+            user_id, have_you_tried())
 
         # If this is a direct message then there's not a usable channel_id
         # and we have to use the response_url instead