From 0625c26c9a16019c00c5a5641ab27f4cf6d4ff09 Mon Sep 17 00:00:00 2001 From: Abhijeet Kaur Date: Mon, 24 Jul 2017 19:57:44 +0530 Subject: [PATCH] bots: Correct 'http.bot_handler' to 'http.client' in googlesearch bot. There is no library as 'http.bot_handler'. 'http.client' is what the author of this bots initially wrote. Searching through the git history shows that someone mistakenly replaced 'client' with 'bot_handler' here. --- zulip_bots/zulip_bots/bots/googlesearch/googlesearch.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zulip_bots/zulip_bots/bots/googlesearch/googlesearch.py b/zulip_bots/zulip_bots/bots/googlesearch/googlesearch.py index 42492bb..edfdb21 100644 --- a/zulip_bots/zulip_bots/bots/googlesearch/googlesearch.py +++ b/zulip_bots/zulip_bots/bots/googlesearch/googlesearch.py @@ -1,7 +1,7 @@ # See readme.md for instructions on running this code. from __future__ import print_function import logging -import http.bot_handler +import http.client from six.moves.urllib.request import urlopen # Uses the Google search engine bindings @@ -26,7 +26,7 @@ def get_google_result(search_keywords): try: urls = search(search_keywords, stop=20) urlopen('http://216.58.192.142', timeout=1) - except http.bot_handler.RemoteDisconnected as er: + except http.client.RemoteDisconnected as er: logging.exception(er) return 'Error: No internet connection. {}.'.format(er) except Exception as e: @@ -85,7 +85,7 @@ def test(): urlopen('http://216.58.192.142', timeout=1) print('Success') return True - except http.bot_handler.RemoteDisconnected as e: + except http.client.RemoteDisconnected as e: print('Error: {}'.format(e)) return False