From 8fad1528d958734817a3b1f3ad645d8d1e0c5b10 Mon Sep 17 00:00:00 2001 From: Zhorken Date: Mon, 8 Mar 2010 23:32:40 -0500 Subject: [PATCH] Pokedex: Fix item links. --- plugins/Pokedex/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Pokedex/plugin.py b/plugins/Pokedex/plugin.py index 435e3b1..c576bd6 100644 --- a/plugins/Pokedex/plugin.py +++ b/plugins/Pokedex/plugin.py @@ -212,7 +212,7 @@ class Pokedex(callbacks.Plugin): elif isinstance(obj, tables.Item): reply_template = \ u"""{name}, an item. """ \ - """http://veekun.com/dex/abilities/{link_name}""" + """http://veekun.com/dex/items/{link_name}""" self._reply(irc, reply_template.format( name=obj.name, link_name=urllib.quote(obj.name.lower().encode('utf8')), -- 2.7.4