Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/chat/smilies.py
diff options
context:
space:
mode:
Diffstat (limited to 'chat/smilies.py')
-rw-r--r--chat/smilies.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chat/smilies.py b/chat/smilies.py
index dfb608a..4c41ac9 100644
--- a/chat/smilies.py
+++ b/chat/smilies.py
@@ -98,7 +98,7 @@ _catalog = None
def get_pixbuf(word):
"""Return a pixbuf associated to a smile, or None if not available"""
- for (name, hint, codes) in THEME:
+ for (name, __, codes) in THEME:
if word in codes:
return gtk.gdk.pixbuf_new_from_file(name)
return None