diff --git a/kickthemout.py b/kickthemout.py index 34990af..81471d6 100644 --- a/kickthemout.py +++ b/kickthemout.py @@ -69,7 +69,11 @@ def regenOnlineIPs(): def scanNetwork(): global hostsList - hostsList = scan.scanNetwork() + try: + hostsList = scan.scanNetwork() + except: + print("\n{0}ERROR: Network scanning failed. Please check your requirements configuration.{1}\n").format(RED, END) + raise SystemExit regenOnlineIPs()