diff --git a/sherlock/notify.py b/sherlock/notify.py index c198fe620..6647a8841 100644 --- a/sherlock/notify.py +++ b/sherlock/notify.py @@ -3,7 +3,7 @@ This module defines the objects for notifying the caller about the results of queries. """ -from sherlock.result import QueryStatus +from .result import QueryStatus from colorama import Fore, Style import webbrowser diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index d48791942..adbe44e83 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -21,10 +21,10 @@ from requests_futures.sessions import FuturesSession from torrequest import TorRequest -from sherlock.result import QueryStatus -from sherlock.result import QueryResult -from sherlock.notify import QueryNotifyPrint -from sherlock.sites import SitesInformation +from .result import QueryStatus +from .result import QueryResult +from .notify import QueryNotifyPrint +from .sites import SitesInformation from colorama import init from argparse import ArgumentTypeError