You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-04-13 14:42:51 -07:00
patchutils.py: Remove is_binary() function.
This commit is contained in:
@ -314,7 +314,7 @@ def contains_binary_patch(all_patches, indices, filename):
|
||||
"""Checks if any patch with given indices affecting filename is a binary patch."""
|
||||
for i in indices:
|
||||
for patch in all_patches[i].patches:
|
||||
if patch.modified_file == filename and patch.is_binary():
|
||||
if patch.modified_file == filename and patch.is_binary:
|
||||
return True
|
||||
return False
|
||||
|
||||
|
Reference in New Issue
Block a user