Comment 41 for bug 1662531

Revision history for this message
Alvin Penner (apenner) wrote :

Thanks for testing. I wonder if you would be willing to try this output test in Python.
In a Python extension I add the code at the start:

if (inkex.os.environ.has_key('LC_ALL')):
    inkex.errormsg('LC_ALL = ' + inkex.os.environ['LC_ALL'])
if (inkex.os.environ.has_key('LANG')):
    inkex.errormsg('LANG = ' + inkex.os.environ['LANG'])

and I get the output:
LANG = en_US
so there is no variable LC_ALL present.