From 8b883a737552a647133c2572cb74d0291ba6a1e2 Mon Sep 17 00:00:00 2001 From: Eevee Date: Thu, 13 May 2010 00:35:37 -0700 Subject: [PATCH] Pokedex: Fix item links. --- plugins/Pokedex/plugin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/Pokedex/plugin.py b/plugins/Pokedex/plugin.py index 62f11b6..11a4aff 100644 --- a/plugins/Pokedex/plugin.py +++ b/plugins/Pokedex/plugin.py @@ -258,9 +258,10 @@ class Pokedex(callbacks.Plugin): elif isinstance(obj, tables.Item): reply_template = \ u"""{name}, an item. """ \ - """http://veekun.com/dex/items/{link_name}""" + """http://veekun.com/dex/items/{link_pocket}/{link_name}""" self._reply(irc, reply_template.format( name=obj.name, + link_pocket=urllib.quote(obj.pocket.name.lower().encode('utf8')), link_name=urllib.quote(obj.name.lower().encode('utf8')), ) ) -- 2.7.4