]> git.cworth.org Git - turbot/commitdiff
Remove a debugging print statement
authorCarl Worth <cworth@cworth.org>
Fri, 16 Oct 2020 20:25:59 +0000 (13:25 -0700)
committerCarl Worth <cworth@cworth.org>
Fri, 16 Oct 2020 20:29:07 +0000 (13:29 -0700)
Just to keep the code and the logs clean

turbot/events.py

index e8ea0b8a3da64e3fb422acc9c00ba9767f73714e..be142953b72bb9cbd062fd6ff0aa9f0ef421b68f 100644 (file)
@@ -2,7 +2,6 @@ import turbot.views
 
 def app_home_opened(turb, body):
     user_id = body['event']['user']
-    print("In app_home_opened function")
     view = turbot.views.home(turb, user_id, body)
     turb.slack_client.views_publish(user_id=user_id, view=view)
     return "OK"