-
-
Notifications
You must be signed in to change notification settings - Fork 704
New issue
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
Fix Python 3.6 installation when the OS locale is set to POSIX #616
Conversation
To fix errors, maybe this line at the top of the file would be enough: from codecs import open Also, can you add your GH nickname + history change? I am thinking of something like: - Fixed Python 3.6 installation when the OS locale is set to POSIX (`#615 <https://github.com/gorakhargosh/watchdog/pull/615>`__) |
Good shout, was going to go via |
Thanks a lot @tehkirill :) |
@BoboTiG are you able to cut a release to pypi? |
A new pypi release would be very helpful. |
@darakian Done :) |
Thank you much @BoboTiG :) |
…hargosh#616) * enforce 'utf-8' encoding, fixes gorakhargosh#615 * using `open` from `codecs` for py2.7 support * Updated changelog to reflect OS locale fix
Fixes #615.