diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-09-03 19:19:07 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-10-24 19:33:50 +0200 |
commit | 4a067c072e3eaa65cb434307ea4e9280d3af9b68 (patch) | |
tree | 9b0947892f5a6ff05b0c6eb2774ea069b92cf09d | |
parent | 4627e66cf3cfd39fd0c8e02351fba3a177650dac (diff) | |
download | portato-4a067c072e3eaa65cb434307ea4e9280d3af9b68.tar.gz portato-4a067c072e3eaa65cb434307ea4e9280d3af9b68.tar.bz2 portato-4a067c072e3eaa65cb434307ea4e9280d3af9b68.zip |
Fix the segfault in GLib due to wrong encoding
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/basic.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/portato/gui/windows/basic.py b/portato/gui/windows/basic.py index 542cf7f..20d8009 100644 --- a/portato/gui/windows/basic.py +++ b/portato/gui/windows/basic.py @@ -32,6 +32,7 @@ except OSError: else: getlib.textdomain(APP) getlib.bindtextdomain(APP, LOCALE_DIR) + getlib.bind_textdomain_codeset(APP, "UTF-8") # some debugging output about the current codeset used nll = getlib.nl_langinfo |