From 0285f67db287334fc64017805fdb27dda0ea71f9 Mon Sep 17 00:00:00 2001 From: Philip Yun Date: Sun, 7 Aug 2016 01:46:20 -0700 Subject: [PATCH] Update client.py small bug with global extension --- client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.py b/client.py index dcb7f5d..079ef33 100644 --- a/client.py +++ b/client.py @@ -4,7 +4,7 @@ from rtmbot import RtmBot slack_client = None def init(config): - global client + global slack_client bot = RtmBot(config) slack_client = bot.slack_client return bot