X-Git-Url: http://git.veekun.com/zzz-dywypi.git/blobdiff_plain/7eee308049b0e000a52d462a078e2a70ba8711f4..8fad1528d958734817a3b1f3ad645d8d1e0c5b10:/plugins/Pokedex/plugin.py diff --git a/plugins/Pokedex/plugin.py b/plugins/Pokedex/plugin.py index ac00566..c576bd6 100644 --- a/plugins/Pokedex/plugin.py +++ b/plugins/Pokedex/plugin.py @@ -162,7 +162,7 @@ class Pokedex(callbacks.Plugin): accuracy=obj.accuracy, pp=obj.pp, effect=unicode(obj.short_effect.as_html), - link_name=urllib.quote(obj.name.lower()), + link_name=urllib.quote(obj.name.lower().encode('utf8')), ) ) @@ -212,10 +212,10 @@ 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()), + link_name=urllib.quote(obj.name.lower().encode('utf8')), ) ) @@ -226,7 +226,7 @@ class Pokedex(callbacks.Plugin): self._reply(irc, reply_template.format( name=obj.name, effect=obj.effect, - link_name=urllib.quote(obj.name.lower()), + link_name=urllib.quote(obj.name.lower().encode('utf8')), ) )