-
Notifications
You must be signed in to change notification settings - Fork 332
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
Unicode error #122
Comments
Hi. Welcome to the wonderful world of cryptic Python unicode error messages. This can be any number of things. My first guess would be an issue with the terminal. However, there are a few things you should check before we can iron it down;
|
|
In git repo we have russian cp-1251 characters. May be this will be helpful |
Hi @vmpartner. This particular error is, I think, related to the fix in issue #46. This change was added in order to handle escape characters in emails - something that can occur when a repository is imported into git from other revision control systems. What happens if you remove that line and run it? Maybe we can just ignore it and catch the exception. This line is really only used for a particular corner case that is very uncommon, so that should be an acceptable solution. |
Yes, its work now. Nice program ;) |
Great. I will implement a fix at a later point. Thank you. Keeping it open for now. |
I have successfully ran gitinspector on OS X after applying this solution: https://coderwall.com/p/-k_93g/mac-os-x-valueerror-unknown-locale-utf-8-in-python I think it needs to be added to this project's README or FAQ. Which one is better? |
Hi @vassilevsky. None. As it doesn't really concern gitinspector (it affects all Python applications under OS X), I think we will add a a specific FAQ for OS/Python specific errors eventually. There are some errors related to Windows that might be worth mentioning as well. For the particular error you reported, there are several old bugs discussing this, for example #109, #93, #53, #32 and #9 to name a few of them. |
I have hit a Unicode issue in gitinspector in changesoutput.py with the RTEMS repo (https://git.rtems.org/rtems.git). We have Unicode users in the repo and I have no locale set and
in |
@kiwichris Discussed several times previously and definitely not a bug in gitinspector. There are a few things you can do to modify behaviour;
Instead of forcing the output to utf-8 (as you do in your hack), gitinspector will always try to re-encode/"convert" characters to the requester chacrater encoding. However, US-ASCII lacks mappings for many unicode characters. In any case - it's the correct behavior. |
Sure, the solutions you highlight make sense. The python error makes it look like an bug. |
Fixed with the above commit. Report any problems related to this. |
Unicode error
The text was updated successfully, but these errors were encountered: