From 579dbe061b9338485841d2dc20d276898f94e550 Mon Sep 17 00:00:00 2001 From: Kenneth Jao Date: Tue, 28 Feb 2017 02:51:36 -0500 Subject: [PATCH] no key update --- breakbot/.gitignore | 1 + breakbot/slackbot.py | 2 +- breakbot/slackid.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/breakbot/.gitignore b/breakbot/.gitignore index 5fd4427..1ea2423 100644 --- a/breakbot/.gitignore +++ b/breakbot/.gitignore @@ -1 +1,2 @@ slackbot2.py +keys.txt diff --git a/breakbot/slackbot.py b/breakbot/slackbot.py index 8609da4..e2ae277 100644 --- a/breakbot/slackbot.py +++ b/breakbot/slackbot.py @@ -15,7 +15,7 @@ AT_BOT = "<@" + BOT_ID + ">" EXAMPLE_COMMAND = "do" # instantiate Slack & Twilio clients -slack_client = SlackClient("xoxb-146731148148-GPuD20MDuClwInYYn378ENL9") +slack_client = SlackClient("...") def handle_command(command, channel): global targetDate diff --git a/breakbot/slackid.py b/breakbot/slackid.py index d63f465..8ecbbd7 100644 --- a/breakbot/slackid.py +++ b/breakbot/slackid.py @@ -4,7 +4,7 @@ from slackclient import SlackClient BOT_NAME = 'break' -slack_client = SlackClient("xoxb-146752022133-pxiuOc2RXHMJDaPO0hSHL67X") +slack_client = SlackClient("...") if __name__ == "__main__":