From ed9b4f261f64455c6dfdf8aada747c604bea0df9 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Thu, 11 Jul 2013 03:51:58 -0400 Subject: [PATCH] Fix. --- commands/urbandictionary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/urbandictionary.py b/commands/urbandictionary.py index 04bdd09..e7c1fe9 100644 --- a/commands/urbandictionary.py +++ b/commands/urbandictionary.py @@ -36,6 +36,6 @@ class UrbanDictionary(Command): elif res['result_type'] == 'fulltext': L = [i['word'] for i in res['list']] msg = 'Here are some close matches: {0}.' - self.reply(data, msg.format(u", ".join(L).encode("utf8")) + self.reply(data, msg.format(u", ".join(L).encode("utf8"))) else: self.reply(data, 'Sorry, no results found.')