From c1700cc955ac1a970c8b598ef7456c0bbfc6da56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20L=C3=B6hel?= Date: Tue, 9 Mar 2021 16:46:11 -0600 Subject: [PATCH] fix: google.py module MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Corrects import for gh.com/abenassi/Google-Search-API. Signed-off-by: Jürgen Löhel --- misp_modules/modules/expansion/google_search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misp_modules/modules/expansion/google_search.py b/misp_modules/modules/expansion/google_search.py index b7b4e7a..bb8c536 100644 --- a/misp_modules/modules/expansion/google_search.py +++ b/misp_modules/modules/expansion/google_search.py @@ -1,6 +1,6 @@ import json try: - from google import google + from googleapi import google except ImportError: print("GoogleAPI not installed. Command : pip install git+https://github.com/abenassi/Google-Search-API")