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
unicode
In line 510, a list of values is converted to a list of unicode values:
responses = map(unicode, list(respdict[targetstring]))
This should be:
responses = map(str, list(respdict[targetstring]))
(Might also be good to update the comments.)
Would you mind picking this up, @kburk1997? :)
The text was updated successfully, but these errors were encountered:
Will do.
Sorry, something went wrong.
Merge pull request #7 from kburk1997/master
4881f4f
Fix issue #6
Thanks! Solved with your commit.
No branches or pull requests
In line 510, a list of values is converted to a list of unicode values:
This should be:
(Might also be good to update the comments.)
Would you mind picking this up, @kburk1997? :)
The text was updated successfully, but these errors were encountered: