Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2004-05-24 02:01:55 +0400
committerYann Leboulanger <asterix@lagaule.org>2004-05-24 02:01:55 +0400
commit241769ca27c0a7a7dbb9c5be365c2c101ffafd80 (patch)
tree2bfd867172e98910cdb2337e112686ddcbda8fbf /plugins
parent0f1978a53b6f87f71a73dd671651503c349d7f18 (diff)
.po files are now in utf-8 so accents doesn't cause troubles
Diffstat (limited to 'plugins')
-rw-r--r--plugins/gtkgui/dialogs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gtkgui/dialogs.py b/plugins/gtkgui/dialogs.py
index 4bac7f367..01d54574e 100644
--- a/plugins/gtkgui/dialogs.py
+++ b/plugins/gtkgui/dialogs.py
@@ -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.decode('iso-8859-1').encode('utf-8'))
+ xml.get_widget('label').set_text(txt)
xml.signal_connect('on_close_clicked', self.on_close)
class about_Window: