Pārlūkot izejas kodu

Handle newlines (somewhat) correctly?

pull/9/head
Ben Kurtovic pirms 11 gadiem
vecāks
revīzija
14e61392e1
1 mainītis faili ar 3 papildinājumiem un 2 dzēšanām
  1. +3
    -2
      commands/urbandictionary.py

+ 3
- 2
commands/urbandictionary.py Parādīt failu

@@ -25,8 +25,9 @@ class UrbanDictionary(Command):
query = urlopen(url.format(q)).read()
res = loads(query)
if res['result_type'] == 'exact':
defin = res['list'][0]
msg = 'Definition: {definition}; example: {example}'.format(**defin)
definition = res['list'][0]['definition'].replace("\n", " ")
example = res['list'][0]['example'].replace("\n", " ")
msg = 'Definition: {0}; example: {1}'.format(definition, example)
self.reply(data, msg)
elif res['result_type'] == 'fulltext':
L = [i['word'] for i in res['list']]


Notiek ielāde…
Atcelt
Saglabāt