Skip to content

Commit

Permalink
Update version, fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
i30817 authored Nov 4, 2023
1 parent b0bc8a7 commit 6a03d28
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions libretrofuzz/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,8 +413,7 @@ def normalizer(nometa, hack, t):
# CamelCaseNames for local labels are common when there are no spaces
# do this to normalize for definite articles
st = " ".join([a for s in regex.split(camelcase_pattern, st) if s and (a := s.strip())])
# Tries to make roman numerals in the range 1-20 equivalent to normal numbers.
# If both str tested have roman numerals little harm done if XXIV gets turned into 204.
# Tries to make roman numerals equivalent to normal numbers
st = replace_roman(st)
# such a common variant i zoom in on it
st = st.replace("Center", "Centre")
Expand Down

0 comments on commit 6a03d28

Please sign in to comment.