From 81388647ed641d777f07d2b4a61bdc6a4ae6925c Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Sun, 19 Apr 2020 22:07:40 -0700 Subject: [PATCH] Syncing latest changes between public/private. --- tools/efrotools/efrocache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/efrotools/efrocache.py b/tools/efrotools/efrocache.py index 51aff612..4cd75f4d 100644 --- a/tools/efrotools/efrocache.py +++ b/tools/efrotools/efrocache.py @@ -277,7 +277,7 @@ def _gen_hashes(fnames: List[str]) -> str: md5 = hashlib.md5() with open(fname, mode='rb') as infile: md5.update(infile.read()) - return (fname, md5.hexdigest()) + return fname, md5.hexdigest() # Now use all procs to hash the files efficiently. with ThreadPoolExecutor(max_workers=cpu_count()) as executor: