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>2008-12-08 01:36:20 +0300
committerYann Leboulanger <asterix@lagaule.org>2008-12-08 01:36:20 +0300
commitfe908b118ec677286bd9164318bab87b2eb0a3c1 (patch)
treea75397368e4ca44edfb7aaca4e916b9f86223f2e
parent944a3124c1a109cc8859932613e7220f74fb31b3 (diff)
don't escape gmail email notifications twice
-rwxr-xr-xsrc/gajim.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gajim.py b/src/gajim.py
index 9239e05c4..cd4a9a354 100755
--- a/src/gajim.py
+++ b/src/gajim.py
@@ -1595,7 +1595,7 @@ class Interface:
path = gtkgui_helpers.get_path_to_generic_or_avatar(img)
notify.popup(_('New E-mail'), jid, account, 'gmail',
path_to_image=path, title=title,
- text=gobject.markup_escape_text(text))
+ text=text)
if self.remote_ctrl:
self.remote_ctrl.raise_signal('NewGmail', (account, array))