Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/chat/smilies.py
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@sugarlabs.org>2012-01-09 13:17:10 (GMT)
committer Aleksey Lim <alsroot@sugarlabs.org>2012-01-09 13:17:10 (GMT)
commit148d0d6fd47d8eb6b3bf42d21828222ee4693082 (patch)
treeb6475a0d0b0ba2bdc8705e6c0e5d977df9dd412a /chat/smilies.py
parenta26e85289000903cf1d8dd98c4d26fc9fe529ee3 (diff)
Lint fixes
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