소스 검색

Fix unicode bugs.

pull/11/head
Ben Kurtovic 11 년 전
부모
커밋
eb9fefc648
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. +4
    -3
      commands/urbandictionary.py

+ 4
- 3
commands/urbandictionary.py 파일 보기

@@ -30,11 +30,12 @@ class UrbanDictionary(Command):
example = re.sub(r"\s+", " ", res['list'][0]['example'])
if definition and definition[-1] not in (".", "!", "?"):
definition += "."
msg = '{0} \x02Example\x0F: {1}'.format(definition, example)
msg = '{0} \x02Example\x0F: {1}'.format(definition.encode("utf8"),
example.encode("utf8"))
self.reply(data, msg)
elif res['result_type'] == 'fulltext':
L = [i['word'] for i in res['list']]
msg = 'Here are some close matches: {0}.'.format(', '.join(L))
self.reply(data, msg)
msg = 'Here are some close matches: {0}.'
self.reply(data, msg.format(u", ".join(L).encode("utf8"))
else:
self.reply(data, 'Sorry, no results found.')

불러오는 중...
취소
저장