浏览代码

Fix.

pull/11/head
Ben Kurtovic 11 年前
父节点
当前提交
ed9b4f261f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      commands/urbandictionary.py

+ 1
- 1
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.')

正在加载...
取消
保存