* src/GrampsLogger/_ErrorReportAssistant.py
(ErrorReportAssistant._get_sys_information): Add LANG to report. svn: r6458
This commit is contained in:
parent
7192a66122
commit
7b3030a87f
@ -1,4 +1,8 @@
|
|||||||
2006-04-26 Alex Roitman <shura@gramps-project.org>
|
2006-04-26 Alex Roitman <shura@gramps-project.org>
|
||||||
|
|
||||||
|
* src/GrampsLogger/_ErrorReportAssistant.py
|
||||||
|
(ErrorReportAssistant._get_sys_information): Add LANG to report.
|
||||||
|
|
||||||
* src/plugins/ChangeTypes.py: Fix wm; adapt to RelLib changes.
|
* src/plugins/ChangeTypes.py: Fix wm; adapt to RelLib changes.
|
||||||
* src/plugins/ChangeNames.py: Fix wm.
|
* src/plugins/ChangeNames.py: Fix wm.
|
||||||
* src/MergePeople.py: Adapt to RelLib changes.
|
* src/MergePeople.py: Adapt to RelLib changes.
|
||||||
|
@ -83,10 +83,12 @@ class ErrorReportAssistant:
|
|||||||
def _get_sys_information(self):
|
def _get_sys_information(self):
|
||||||
return "Python version: %s \n"\
|
return "Python version: %s \n"\
|
||||||
"Gramps version: %s \n"\
|
"Gramps version: %s \n"\
|
||||||
|
"LANG: %s\n"\
|
||||||
"OS: %s\n"\
|
"OS: %s\n"\
|
||||||
"Distribution: %s\n"\
|
"Distribution: %s\n"\
|
||||||
% (str(sys.version).replace('\n',''),
|
% (str(sys.version).replace('\n',''),
|
||||||
str(const.version),
|
str(const.version),
|
||||||
|
os.environ.get('LANG',''),
|
||||||
os.uname()[0],
|
os.uname()[0],
|
||||||
os.uname()[2])
|
os.uname()[2])
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user