-
-
Notifications
You must be signed in to change notification settings - Fork 932
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
gpg fails to find key due to overriden locale #1130
Comments
gpg
fails to find key due to overriden locale
gpg
fails to find key due to overriden locale
I am absolutely amazed by this issue and write up which is nothing short of an exciting detective story - thanks for that! GitPython should definitely not enforce ASCII anywhere even though it requires an English locale for parsing its output, and I would hope you will find the time to submit a PR implementing the suggestion provided here:
It would be a good opportunity to embed Canada (加拿大) literally into GitPython's codebase :). |
Sure, I'm glad to see that this isn't a non-starter :)
I'm afraid few users will have I would propose we choose a locale that we think will be available to most users and rely on falling-back to In my experience, Otherwise, we can also go all-out and list the locales on the system and look for one that matches What do you think? |
Thanks for sharing your insight - if I remember correctly what happened…erm…a decade ago I was just trying our locales to find one that works everywhere, with UTF-8 not being anything I would know or be concerned about 😅. It sounds like If libc indeed falls back to Maybe you could try Thanks again! |
Description
I am using
GitPython
to sign tags as such:This fails with the following error/exception:
Debugging the problem
I was initially confused since I can sign tags correctly from the command line using the
git tag -s ...
command directly.Digging a bit, I saw that
git
invokesgpg
with the following arguments both when I tag using thegit
client directly or when usingGitPython
.This seemed to point to something more subtle, possibly related to the process's environment.
I couldn't find a way for
git
to provide thestderr
ofgpg
to get a better error report. Thus, I modifiedGnuPG 2.2.27
and rebuilt it to output the errors to a log file. This yielded the following error:If you look at the first line, you will see that the
é
characters in my name were changed toé
.This typically happens when my name is converted from UTF-8 to ISO/IEC 8859-1.
This clued me in that something funny related to locales was happening.
I dumped and compared the environment of the
gpg
process in the two scenarios (CLI use and GitPython) and saw that the only meaningful difference was that theLANGUAGE
andLC_ALL
environment variables were set toC
whenGitPython
was involved.Indeed, invoking
git
withLC_ALL="C" LANGUAGE="C" git tag -s [...]
reproduced the problem.Cause
Looking at the
GitPython
code, I found that git is invoked with those environment variables set:https://github.com/gitpython-developers/GitPython/blame/b3778ec/git/cmd.py#L694
I am unsure what "parsing code" the comments are referring to so I can't comment on the reasons why this is done. However, forcing a
C
locale will cause these kinds of erroneous encoding conversions for people who, like me, have non-ASCII names.For what it's worth, my locale is
LANG=en_CA.utf8
.I would guess that forcing the locale to any UTF-8 English locale would work around most issues and still provide
GitPython
with an English output.My workaround
I found out that setting the
signingKey
property to myKEYID
in my.gitconfig
causesgit
to invokegpg
with theKEYID
instead of thename
property.This works around the problem since no accented letters are used in the
gpg
invocation.The text was updated successfully, but these errors were encountered: