From 14f10276814ec76f6135540d45551d21e55ae58e Mon Sep 17 00:00:00 2001 From: Matheus Felipe Date: Fri, 15 Mar 2024 13:56:02 -0300 Subject: [PATCH] fix: update xlsx arg descripton (xslx -> xlsx) --- README.md | 2 +- sherlock/sherlock.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b71cc2b..f480f4f 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ optional arguments: path. --csv Create Comma-Separated Values (CSV) File. --xlsx Create the standard file for the modern Microsoft Excel - spreadsheet (xslx). + spreadsheet (xlsx). --site SITE_NAME Limit analysis to just the listed sites. Add multiple options to specify more than one site. --proxy PROXY_URL, -p PROXY_URL diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index a8760f2..fb9f524 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -555,7 +555,7 @@ def main(): action="store_true", dest="xlsx", default=False, - help="Create the standard file for the modern Microsoft Excel spreadsheet (xslx).", + help="Create the standard file for the modern Microsoft Excel spreadsheet (xlsx).", ) parser.add_argument( "--site",