From 0a61852b87eedc0c619b32c4c27fb144f26612b4 Mon Sep 17 00:00:00 2001 From: maride Date: Fri, 5 Dec 2025 11:00:30 +0100 Subject: [PATCH] Do not hardcode name --- hashcat2md.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hashcat2md.py b/hashcat2md.py index ddcc530..b7b58fc 100644 --- a/hashcat2md.py +++ b/hashcat2md.py @@ -65,7 +65,7 @@ def parse_hashcat_benchmark(file_path): def main(): if len(sys.argv) < 2: - print("Usage: python parse_hashcat_multiple.py [file2] [file3] ...") + print(f"Usage: python {sys.argv[0]} [file2] [file3] ...") print("Each file is a hashcat benchmark output from a different device.") sys.exit(1)