From 5c0797ae7102d7db8e59a278415275e4c54d39ed Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 8 Sep 2005 10:11:30 +0000 Subject: [PATCH] emots MUST be upper, so we made them upper when we parse the config --- src/gajim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gajim.py b/src/gajim.py index eb772626b..bab5d71e6 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -941,7 +941,7 @@ class Interface: emot_file = gajim.config.get_per('emoticons', emot, 'path') if not self.image_is_ok(emot_file): continue - self.emoticons[emot] = emot_file + self.emoticons[emot.upper()] = emot_file # update regular expressions self.make_regexps()