Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion reproducible-builds/apkdiff/apkdiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def compare_resources_arsc(first_entry_bytes: bytes, second_entry_bytes: bytes)
pkg1 = packages1[i]
pkg2 = packages2[i]

if type(pkg1) != type(pkg2):
if type(pkg1) is not type(pkg2):
print(f"Element type mismatch at index {i}: {type(pkg1).__name__} vs {type(pkg2).__name__}")
success = False
continue
Expand Down