From 2791e1553aed311f0de1cba3949e11ae61afdd80 Mon Sep 17 00:00:00 2001 From: nil0x42 Date: Fri, 4 Jan 2019 23:59:58 +0000 Subject: [PATCH] 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) --- sherlock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sherlock.py b/sherlock.py index d3345ad6..972e8e46 100644 --- a/sherlock.py +++ b/sherlock.py @@ -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