From 1ea108fc2b1a70084991f32ead01b94c3c16a46d Mon Sep 17 00:00:00 2001 From: Dobatymo Date: Fri, 29 Oct 2021 11:34:43 +0800 Subject: [PATCH] changed cache filename --- core/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/app.py b/core/app.py index d2627f6b..441bfd64 100644 --- a/core/app.py +++ b/core/app.py @@ -138,7 +138,7 @@ class DupeGuru(Broadcaster): self.app_mode = AppMode.STANDARD self.discarded_file_count = 0 self.exclude_list = ExcludeList() - hash_cache_file = op.join(self.appdata, "hash.cache") + hash_cache_file = op.join(self.appdata, "hash_cache.db") self.directories = directories.Directories(self.exclude_list, hash_cache_file) self.results = results.Results(self) self.ignore_list = IgnoreList()