|
@@ -29,7 +29,7 @@ class UrbanDictionary(Command): |
|
|
self.reply(data, msg) |
|
|
self.reply(data, msg) |
|
|
elif res['result_type'] == 'fulltext': |
|
|
elif res['result_type'] == 'fulltext': |
|
|
l = [i['word'] for i in res['list']] |
|
|
l = [i['word'] for i in res['list']] |
|
|
msg = 'Here are some close matches...: {}'.format(', '.join(l)) |
|
|
|
|
|
|
|
|
msg = 'Here are some close matches...: {0}'.format(', '.join(l)) |
|
|
self.reply(data, msg) |
|
|
self.reply(data, msg) |
|
|
else: |
|
|
else: |
|
|
self.reply(data, 'Sorry, no results found :(') |
|
|
self.reply(data, 'Sorry, no results found :(') |
|
|