We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With a .ged file exported from geneanet, I get an encoding problem error:
21 input = input[3:] 22 prefix = 3 ---> 23 (output, consumed) = codecs.utf_8_decode(input, errors, True) 24 return (output, consumed+prefix) 25
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe2 in position 20: invalid continuation byte
The text was updated successfully, but these errors were encountered:
Happens same with gedcom from MyHeritage
Sorry, something went wrong.
This hack worked for me: #47
No branches or pull requests
With a .ged file exported from geneanet, I get an encoding problem error:
21 input = input[3:]
22 prefix = 3
---> 23 (output, consumed) = codecs.utf_8_decode(input, errors, True)
24 return (output, consumed+prefix)
25
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe2 in position 20: invalid continuation byte
The text was updated successfully, but these errors were encountered: