fix ignore md5 logic

This commit is contained in:
jbannon 2022-08-10 19:02:18 +00:00
parent 147cc3204f
commit 68d743aa24

View file

@ -71,7 +71,7 @@ class ExpectedDownloads:
full_path full_path
), f"Expected {str(expected_download.path)} to be a file but it is not" ), f"Expected {str(expected_download.path)} to be a file but it is not"
if expected_download.path in ignore_md5_hashes_for: if str(expected_download.path) in ignore_md5_hashes_for:
continue continue
md5_hash = _get_file_md5_hash(full_file_path=full_path) md5_hash = _get_file_md5_hash(full_file_path=full_path)