fix ignore md5 logic
This commit is contained in:
parent
147cc3204f
commit
68d743aa24
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue