mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-05-07 09:19:50 +00:00
Fix typo in engine.py
This commit is contained in:
parent
d369bcddd7
commit
97f490b8b7
@ -309,7 +309,7 @@ def getmatches_by_contents(files, bigsize=0, j=job.nulljob):
|
|||||||
if first.digest_samples == second.digest_samples and first.digest_samples is not None:
|
if first.digest_samples == second.digest_samples and first.digest_samples is not None:
|
||||||
result.append(Match(first, second, 100))
|
result.append(Match(first, second, 100))
|
||||||
else:
|
else:
|
||||||
if first.digest == second.digest and first.digest_samples is not None:
|
if first.digest == second.digest and first.digest is not None:
|
||||||
result.append(Match(first, second, 100))
|
result.append(Match(first, second, 100))
|
||||||
group_count += 1
|
group_count += 1
|
||||||
j.add_progress(desc=PROGRESS_MESSAGE % (len(result), group_count))
|
j.add_progress(desc=PROGRESS_MESSAGE % (len(result), group_count))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user