瀏覽代碼

Update and rename dictionary.py to urbandictionary.py

pull/9/head
Ben Kurtovic 11 年之前
父節點
當前提交
4488046127
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      commands/urbandictionary.py

commands/dictionary.py → commands/urbandictionary.py 查看文件

@@ -10,7 +10,7 @@ from urllib2 import urlopen
from earwigbot.commands import Command

class UrbanDictionary(Command):
"""Get the real definition of a word."""
"""Get the definition of a word using Urban Dictionary."""
name = "urban"
commands = ["dictt", "definee", "defne", "dct", "ud"]

@@ -32,5 +32,5 @@ class UrbanDictionary(Command):
msg = 'Here are some close matches...: {0}'.format(', '.join(l))
self.reply(data, msg)
else:
self.reply(data, 'Sorry, no results found :(')
self.reply(data, 'Sorry, no results found.')


Loading…
取消
儲存