mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-24 00:28:23 -05:00
Disable autojunk for python difflib (#1001)
This commit is contained in:
parent
2147be19de
commit
cb74a8c80e
1 changed files with 1 additions and 1 deletions
|
@ -565,7 +565,7 @@ def recomp_lookup(addr: int, exact: bool) -> Optional[str]:
|
|||
orig_asm = [x[1] for x in orig_combined]
|
||||
recomp_asm = [x[1] for x in recomp_combined]
|
||||
|
||||
diff = difflib.SequenceMatcher(None, orig_asm, recomp_asm)
|
||||
diff = difflib.SequenceMatcher(None, orig_asm, recomp_asm, autojunk=False)
|
||||
ratio = diff.ratio()
|
||||
|
||||
if ratio != 1.0:
|
||||
|
|
Loading…
Reference in a new issue