From 1b5c300195c8c709f3c39a3dcfa7df8dd99ba3e4 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Thu, 18 Apr 2013 11:51:39 -0300 Subject: [PATCH] Adjust messages, again. --- commands/urbandictionary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/urbandictionary.py b/commands/urbandictionary.py index 92f4298..ec206c2 100644 --- a/commands/urbandictionary.py +++ b/commands/urbandictionary.py @@ -30,7 +30,7 @@ class UrbanDictionary(Command): self.reply(data, msg) elif res['result_type'] == 'fulltext': L = [i['word'] for i in res['list']] - msg = 'Here are some close matches...: {0}'.format(', '.join(L)) + msg = 'Here are some close matches: {0}.'.format(', '.join(L)) self.reply(data, msg) else: self.reply(data, 'Sorry, no results found.')