Skip to content

Commit

Permalink
Fix the special string in docs to check for similar usernames (#1974)
Browse files Browse the repository at this point in the history
Should use {?} instead of {%}.

refs:
- #1968
- #1823
- #1284
- #1298
- #1518
  • Loading branch information
matheusfelipeog authored Jan 19, 2024
2 parents 8965cf1 + 40948f2 commit e3a09f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ usage: sherlock [-h] [--version] [--verbose] [--folderoutput FOLDEROUTPUT]
[--browse] [--local] [--nsfw]
USERNAMES [USERNAMES ...]

Sherlock: Find Usernames Across Social Networks (Version 0.14.2)
Sherlock: Find Usernames Across Social Networks (Version 0.14.3)

positional arguments:
USERNAMES One or more usernames to check with social networks.
Check similar usernames using {%} (replace to '_', '-', '.').
Check similar usernames using {?} (replace to '_', '-', '.').

optional arguments:
-h, --help show this help message and exit
Expand Down
2 changes: 1 addition & 1 deletion sherlock/sherlock.py
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ def main():
nargs="+",
metavar="USERNAMES",
action="store",
help="One or more usernames to check with social networks. Check similar usernames using {%%} (replace to '_', '-', '.').",
help="One or more usernames to check with social networks. Check similar usernames using {?} (replace to '_', '-', '.').",
)
parser.add_argument(
"--browse",
Expand Down

0 comments on commit e3a09f8

Please sign in to comment.