소스 검색

Capitalise replies in !quit

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

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

@@ -30,7 +30,7 @@ class Quit(Command):

def process(self, data):
if data.host not in self.config.irc["permissions"]["owners"]:
self.reply(data, "you must be a bot owner to use this command.")
self.reply(data, "You must be a bot owner to use this command.")
return
if data.command == "quit":
self.do_quit(data)
@@ -45,7 +45,7 @@ class Quit(Command):
reason = " ".join(args)
else:
if not args or args[0].lower() != data.my_nick:
self.reply(data, "to confirm this action, the first argument must be my name.")
self.reply(data, "To confirm this action, the first argument must be my name.")
return
reason = " ".join(args[1:])



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