1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2024-11-18 04:59:03 +00:00

changed cache filename

This commit is contained in:
Dobatymo 2021-10-29 11:34:43 +08:00
parent 2f02a6010d
commit 1ea108fc2b

View File

@ -138,7 +138,7 @@ class DupeGuru(Broadcaster):
self.app_mode = AppMode.STANDARD self.app_mode = AppMode.STANDARD
self.discarded_file_count = 0 self.discarded_file_count = 0
self.exclude_list = ExcludeList() 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.directories = directories.Directories(self.exclude_list, hash_cache_file)
self.results = results.Results(self) self.results = results.Results(self)
self.ignore_list = IgnoreList() self.ignore_list = IgnoreList()