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
The problem is there: https://github.com/charliewolf/pynder/blob/master/pynder/models/user.py#L95
def __str__(self): return six.text_type(self).encode('utf-8')
six.text_type is str in Python 3 hence an infinite loop. The best would be to use future.utils.python_2_unicode_compatible.
future.utils.python_2_unicode_compatible
The text was updated successfully, but these errors were encountered:
fix charliewolf#199
92c7654
No branches or pull requests
The problem is there: https://github.com/charliewolf/pynder/blob/master/pynder/models/user.py#L95
six.text_type is str in Python 3 hence an infinite loop.
The best would be to use
future.utils.python_2_unicode_compatible
.The text was updated successfully, but these errors were encountered: