Update volatility3/framework/automagic/symbol_cache.py

Cool, I always forget about that, I think it's just what I'm used to, thanks!  5:)

Co-authored-by: Donghyun Kim <digitalisx99@gmail.com>
This commit is contained in:
ikelos
2022-07-20 20:46:20 +01:00
committed by Mike Auty
co-authored by Donghyun Kim
parent bda200168a
commit ebab09e53a
@@ -276,7 +276,7 @@ class SqliteCache(CacheManagerInterface):
number_files_to_process = len(files_to_process)
cursor = self._database.cursor()
try:
for location in files_to_process:
for counter, location in enumerate(files_to_process):
# Open location
counter += 1
progress_callback(counter * 100 / number_files_to_process,