Unicode filenames #122
Closed
Unicode filenames #122
Labels
Comments
You are right, though it seems to have to be fixed in |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Image(filename='Барлық және тең.jpg')
works as intended - it operates on file with Unicode characters in their filenames cleanly.Image(filename=u'Барлық және тең.jpg')
throws the following error:Should the string
return string.encode()
be replaced with something likereturn string.encode(sys.getfilesystemencoding())
, so that the constructorImage
could support Unicode filenames?Also
save()
method of classImage
throw the same error:The text was updated successfully, but these errors were encountered: