Skip to content
Snippets Groups Projects
Commit 9cc7bae8 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

bugfix : problem with french accents

parent 7bd7a8fb
No related branches found
No related tags found
No related merge requests found
......@@ -240,7 +240,7 @@ class warning_Window:
def __init__(self, txt):
xml = gtk.glade.XML(GTKGUI_GLADE, 'Warning', APP)
xml.get_widget('label').set_text(txt)
xml.get_widget('label').set_text(txt.decode('iso-8859-1').encode('utf-8'))
xml.signal_connect('on_close_clicked', self.on_close)
class about_Window:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment