From 9645c8b31f456c894cfbdae3c57865722e7d07af Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Mon, 27 Nov 2017 20:50:06 -0800 Subject: [PATCH] integrations: Remove disabled googlesearch integration. This was moved to another part of the python-zulip-api codebase because it was unfinished. --- zerver/lib/integrations.py | 1 - 1 file changed, 1 deletion(-) diff --git a/zerver/lib/integrations.py b/zerver/lib/integrations.py index 689ffbae40..fbe25cf8ec 100644 --- a/zerver/lib/integrations.py +++ b/zerver/lib/integrations.py @@ -440,7 +440,6 @@ INTEGRATIONS = { BOT_INTEGRATIONS = [ BotIntegration('github_detail', ['version-control', 'bots'], display_name='GitHub Detail'), - BotIntegration('googlesearch', ['bots'], display_name='Google Search'), BotIntegration('xkcd', ['bots', 'misc'], display_name='xkcd'), ] # type: List[BotIntegration]