From 69480d82fbeda959935eb246df00b657ba400091 Mon Sep 17 00:00:00 2001 From: shijuleon Date: Wed, 26 Dec 2018 21:01:53 +0530 Subject: [PATCH] Removed banner from help --- sherlock.py | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/sherlock.py b/sherlock.py index 15770213..59271dc4 100644 --- a/sherlock.py +++ b/sherlock.py @@ -114,22 +114,7 @@ def sherlock(username): print("\033[1;92m[\033[0m\033[1;77m*\033[0m\033[1;92m] Saved: \033[37;1m{}\033[0m".format(username+".txt")) -class ArgumentParserError(Exception): pass - -class ArgumentParser(argparse.ArgumentParser): - def error(self, message): - print(" .\"\"\"-.") - print(" / \\") - print("\033[37;1m ____ _ _ _ | _..--'-.") - print("\033[37;1m/ ___|| |__ ___ _ __| | ___ ___| |__ >.`__.-\"\"\;\"`") - print("\033[37;1m\___ \| '_ \ / _ \ '__| |/ _ \ / __| |/ / / /( ^\\") - print("\033[37;1m ___) | | | | __/ | | | (_) | (__| < '-`) =|-.") - print("\033[37;1m|____/|_| |_|\___|_| |_|\___/ \___|_|\_\ /`--.'--' \ .-.") - print("\033[37;1m .'`-._ `.\ | J /") - print("\033[37;1m / `--.| \__/\033[0m") - self.print_usage(sys.stderr) - -parser = ArgumentParser() +parser = argparse.ArgumentParser() parser.add_argument('username', help='check services with given username') parser.add_argument("-d", '--debug', help="enable debug mode", action="store_true")