You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on python 2 I faced with UnicodeDecodeError: 'ascii' codec can't decode byte 0xd0 in position 0: ordinal not in range(128) issue when execute smth like
from graphene_django.views import GraphQLView
GraphQLView.format_error(error)
when error has non-ASCII characters like Ошибка
And seems like backward incompatibility appears after this change(found few similar issues on GH with six.text_type)
If you agree that this is a bug I will try to provide fix for it :)
The text was updated successfully, but these errors were encountered:
Greetings!
After upgrading from
to
on python 2 I faced with
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd0 in position 0: ordinal not in range(128)
issue when execute smth likewhen error has non-ASCII characters like
Ошибка
And seems like backward incompatibility appears after this change(found few similar issues on GH with
six.text_type
)If you agree that this is a bug I will try to provide fix for it :)
The text was updated successfully, but these errors were encountered: