From 6a03d28a2f07bfc1bbfb97a8881ffadcd5b22182 Mon Sep 17 00:00:00 2001 From: i30817 Date: Sat, 4 Nov 2023 07:28:49 +0000 Subject: [PATCH] Update version, fix comment --- libretrofuzz/__main__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libretrofuzz/__main__.py b/libretrofuzz/__main__.py index 8969427..87ba51f 100644 --- a/libretrofuzz/__main__.py +++ b/libretrofuzz/__main__.py @@ -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")