mirror of https://github.com/MISP/misp-modules
fix: google.py module
Corrects import for gh.com/abenassi/Google-Search-API. Signed-off-by: Jürgen Löhel <juergen.loehel@inlyse.com>pull/477/head
parent
9e7eb93d0f
commit
c1700cc955
|
@ -1,6 +1,6 @@
|
||||||
import json
|
import json
|
||||||
try:
|
try:
|
||||||
from google import google
|
from googleapi import google
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("GoogleAPI not installed. Command : pip install git+https://github.com/abenassi/Google-Search-API")
|
print("GoogleAPI not installed. Command : pip install git+https://github.com/abenassi/Google-Search-API")
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue