[r21616]GrampsLocale: Ensure that encoding gets set to something
In the C locale, locale.getlocale() returns [None, None] svn: r21621
This commit is contained in:
parent
bd61f08873
commit
553d82ba34
@ -223,6 +223,11 @@ class GrampsLocale(object):
|
|||||||
pass
|
pass
|
||||||
#Next, we need to know what is the encoding from the native environment:
|
#Next, we need to know what is the encoding from the native environment:
|
||||||
self.encoding = locale.getlocale()[1]
|
self.encoding = locale.getlocale()[1]
|
||||||
|
if not self.encoding:
|
||||||
|
self.encoding = locale.getpreferredencoding()
|
||||||
|
if not self.encoding:
|
||||||
|
self.encoding = 'utf-8'
|
||||||
|
|
||||||
#GtkBuilder depends on reading Glade files as UTF-8 and crashes if it
|
#GtkBuilder depends on reading Glade files as UTF-8 and crashes if it
|
||||||
#doesn't, so set $LANG to have a UTF-8 locale. NB: This does *not*
|
#doesn't, so set $LANG to have a UTF-8 locale. NB: This does *not*
|
||||||
#affect locale.getpreferredencoding() or sys.getfilesystemencoding()
|
#affect locale.getpreferredencoding() or sys.getfilesystemencoding()
|
||||||
|
Loading…
Reference in New Issue
Block a user