Jonas Folkvord Triki

Results 4 comments of Jonas Folkvord Triki

I managed to narrow down the error to the following. If the string contains the character `İ` and ends with an abbreviation for a month (e.g. `"jan."`, `"feb"`. etc.), then...

As a workaround to the problem, I did the following which seems to work fine in practice: ```python text = "some string" if text.endswith("."): text = replace_contractions(text[:-1]) + "." else:...

Any update on this @luin?