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
Had to change a few lines to make it work in Python3:
mapping.py Comment out lines 75 and 76:
#u = u.replace(pattern.decode("utf-8"), unichr(code)) #u = u.replace(pattern, unichr(code))
And add a line 76: pass
pass
detector.py Change line 80: best = list(self.names[name].keys())[0]
best = list(self.names[name].keys())[0]
Change line 98: return (len(list(country_values)),
return (len(list(country_values)),
The text was updated successfully, but these errors were encountered:
Probably you want to add this to readme.md?
Sorry, something went wrong.
Can confirm it works!
No branches or pull requests
Had to change a few lines to make it work in Python3:
mapping.py
Comment out lines 75 and 76:
And add a line 76:
pass
detector.py
Change line 80:
best = list(self.names[name].keys())[0]
Change line 98:
return (len(list(country_values)),
The text was updated successfully, but these errors were encountered: