* src/GrampsLogger/_ErrorReportAssistant.py

(ErrorReportAssistant._get_sys_information): Add LANG to report.



svn: r6458
This commit is contained in:
Alex Roitman
2006-04-27 01:40:32 +00:00
parent 7192a66122
commit 7b3030a87f
2 changed files with 6 additions and 0 deletions

View File

@@ -83,10 +83,12 @@ class ErrorReportAssistant:
def _get_sys_information(self):
return "Python version: %s \n"\
"Gramps version: %s \n"\
"LANG: %s\n"\
"OS: %s\n"\
"Distribution: %s\n"\
% (str(sys.version).replace('\n',''),
str(const.version),
os.environ.get('LANG',''),
os.uname()[0],
os.uname()[2])