Browse Source

Adjust messages again.

pull/9/head
Ben Kurtovic 11 years ago
parent
commit
f3cf50b9ce
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      commands/urbandictionary.py

+ 3
- 1
commands/urbandictionary.py View File

@@ -28,7 +28,9 @@ class UrbanDictionary(Command):
if res['result_type'] == 'exact':
definition = re.sub(r"\s+", " ", res['list'][0]['definition'])
example = re.sub(r"\s+", " ", res['list'][0]['example'])
msg = '{0}; example: {1}'.format(definition, example)
if definition and definition[-1] not in (".", "!", "?"):
definition += "."
msg = '{0} \x02Example\x0F: {1}'.format(definition, example)
self.reply(data, msg)
elif res['result_type'] == 'fulltext':
L = [i['word'] for i in res['list']]


Loading…
Cancel
Save