Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mistype in person name #1295

Closed
RomanMerkushin opened this issue Nov 14, 2022 · 2 comments
Closed

Mistype in person name #1295

RomanMerkushin opened this issue Nov 14, 2022 · 2 comments

Comments

@RomanMerkushin
Copy link

"Магдалeна",

"Магдалена" has an ASCII symbol in last "е" character.

In master:

>>> [ord(c) for c in "Магдалeна"]
[1052, 1072, 1075, 1076, 1072, 1083, 101, 1085, 1072]

Correct name:

>>> [ord(c) for c in "Магдалена"]
[1052, 1072, 1075, 1076, 1072, 1083, 1077, 1085, 1072]
@lk-geimfari
Copy link
Owner

Wow, that's pretty strange. Can you please, create a PR?

@RomanMerkushin
Copy link
Author

RomanMerkushin commented Nov 15, 2022

Done #1297

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants