From 62c6443858a5f8c5b39ea2d779a912c29a639af0 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Tue, 14 Nov 2023 13:44:20 +0100 Subject: [PATCH] updated progress --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 045f719..4f54cad 100644 --- a/main.py +++ b/main.py @@ -14,7 +14,7 @@ def md5sum(filename): def find_duplicates(directories, file_type): hashes = defaultdict(list) for directory in directories: - for root, dirs, files in tqdm(os.walk(directory, followlinks=False), desc="Indexing files", unit="dir"): + for root, dirs, files in tqdm(os.walk(directory, followlinks=False), desc=f"Indexing files of {directory}", unit="dir"): for filename in files: if file_type and not filename.endswith(file_type): continue