From cf3dc7ba7c69ce6bb2e581755f556400bc260666 Mon Sep 17 00:00:00 2001 From: Vincent Yiu Date: Sat, 27 Mar 2021 13:32:23 +0800 Subject: [PATCH] Fix typo --- LinkedInt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LinkedInt.py b/LinkedInt.py index e2ece48..be05148 100644 --- a/LinkedInt.py +++ b/LinkedInt.py @@ -31,7 +31,7 @@ import urllib.parse """ Setup Argument Parameters """ parser = argparse.ArgumentParser(description='Discovery LinkedIn') parser.add_argument('-u', '--keywords', help='Keywords to search') -parser.add_argument('-o', '--output', help='Output file (do not include extentions)') +parser.add_argument('-o', '--output', help='Output file (do not include extensions)') args = parser.parse_args() config = configparser.RawConfigParser() config.read('LinkedInt.cfg')