소스 검색

link to x's tool

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

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

@@ -1,5 +1,7 @@
# -*- coding: utf-8 -*-

from urllib import quote_plus

from classes import BaseCommand
import wiki

@@ -30,5 +32,8 @@ class Command(BaseCommand):
self.connection.reply(data, msg.format(username))
return

msg = "\x0302{0}\x0301 has {1} edits."
self.connection.reply(data, msg.format(username, count))
url = "http://toolserver.org/~soxred93/pcount/index.php?name={0}&lang=en&wiki=wikipedia"
url = url.format(quote_plus(user.name()))

msg = "\x0302{0}\x0301 has {1} edits ({2})."
self.connection.reply(data, msg.format(username, count, url))

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