From 64bd195ae777d9cd7cc865b592c09b3ec67a1fcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E8=8C=82=E8=83=A4?= Date: Sun, 23 Jun 2019 18:43:51 +0200 Subject: [PATCH] Typo fix I wish I understand this right. The term "flashligth" only appears in this welcome text and a comment. I believe this is an typo mistake rather than a "intentional" typo joke. --- lib/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/main.py b/lib/main.py index 020bd4d..f2ad412 100644 --- a/lib/main.py +++ b/lib/main.py @@ -23,7 +23,7 @@ def __init__(self): __service_name_list = ("active", "passive", "screen", "filter") usage = "Usage: use --help for further information" - description = "Flashligth: Light your ways through Pentest" + description = "Flashlight: Light your ways through Pentest" parser = argparse.ArgumentParser(description = description, usage = usage) parser.add_argument('-p', '--project', dest = 'project', action = 'store', help = 'Project Name', required = True) @@ -68,7 +68,7 @@ def __init__(self): def _run(self, scan_type): - """ Run flashligth as a root""" + """ Run flashlight as a root""" if os.geteuid() != 0: Core.print_error("Run as ROOT")