소스 검색

Try \x0F

tags/v0.1^2
Ben Kurtovic 12 년 전
부모
커밋
b891f2f6f4
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      earwigbot/commands/editcount.py

+ 2
- 2
earwigbot/commands/editcount.py 파일 보기

@@ -42,12 +42,12 @@ class Editcount(Command):
try:
count = user.editcount
except exceptions.UserNotFoundError:
msg = "the user \x0302{0}\x0399 does not exist."
msg = "the user \x0302{0}\x0F does not exist."
self.reply(data, msg.format(name))
return

safe = quote_plus(user.name.encode("utf8"))
url = "http://toolserver.org/~tparis/pcount/index.php?name={0}&lang={1}&wiki={2}"
fullurl = url.format(safe, site.lang, site.project)
msg = "\x0302{0}\x0399 has {1} edits ({2})."
msg = "\x0302{0}\x0F has {1} edits ({2})."
self.reply(data, msg.format(name, count, fullurl))

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