Fix incorrect file save notification

When username argument was provided with uppercase chars, sherlock
said that file was saved into "UserName.txt" instead of "username.txt" (fname var)
pull/89/head
nil0x42 6 years ago committed by GitHub
parent 683ca99316
commit 2791e1553a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -287,7 +287,7 @@ def sherlock(username, verbose=False, tor=False, unique_tor=False):
print((Style.BRIGHT + Fore.GREEN + "[" +
Fore.YELLOW + "*" +
Fore.GREEN + "] Saved: " +
Fore.WHITE + "{}").format(username+".txt"))
Fore.WHITE + "{}").format(fname))
final_score(amount, fname)
return results_total

Loading…
Cancel
Save