From 5ffd1868826925dd8a29b351c5eefe0c9cf88ec1 Mon Sep 17 00:00:00 2001 From: Jan-Eike Strangmann Date: Wed, 16 Oct 2024 21:11:26 +0200 Subject: [PATCH] fixed tab typo --- netattack2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netattack2.py b/netattack2.py index 92b0b82..15fbe85 100755 --- a/netattack2.py +++ b/netattack2.py @@ -34,7 +34,7 @@ def auto_installer(): subprocess.call("sudo apt-get install python-scapy -y > {}".format(os.devnull), shell=True) subprocess.call("sudo apt-get install python-nmap -y > {}".format(os.devnull), shell=True) subprocess.call("sudo apt-get install python-nfqueue -y > {}".format(os.devnull), shell=True) - subprocess.call("sudo apt-get install nmap -y > {}".format(os.devnull), shell=True) + subprocess.call("sudo apt-get install nmap -y > {}".format(os.devnull), shell=True) sys.exit("\n[{G}+{N}] Requirements installed.\n".format(G=GREEN, N=NORMAL)) sys.exit(0)