diff --git a/src/eddn/Bouncer.py b/src/eddn/Bouncer.py index d0c9ce4..ae1d730 100644 --- a/src/eddn/Bouncer.py +++ b/src/eddn/Bouncer.py @@ -28,10 +28,30 @@ Architecture: """ import argparse import logging +import sys import zlib from datetime import datetime from typing import Callable +if sys.path[0].endswith('/eddn'): + print(sys.path) + print( + ''' +You're not running this script correctly. + +Do not do: + + python /Bouncer.py + +instead do: + + cd + python -m eddn.Bouncer +''' + ) + sys.exit(-1) + + import gevent import requests import simplejson