Browse Source

Capitalise replies in !chanops: !voice, !devoice, !op, !deop, !join, !part

tags/v0.1^2
Justin Yulli Kim 12 years ago
parent
commit
56c1c08f39
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      earwigbot/commands/chanops.py

+ 3
- 3
earwigbot/commands/chanops.py View File

@@ -30,11 +30,11 @@ class ChanOps(Command):


def process(self, data): def process(self, data):
if data.command == "chanops": if data.command == "chanops":
msg = "available commands are !voice, !devoice, !op, !deop, !join, and !part."
msg = "Available commands are !voice, !devoice, !op, !deop, !join, and !part."
self.reply(data, msg) self.reply(data, msg)
return return
if data.host not in self.config.irc["permissions"]["admins"]: if data.host not in self.config.irc["permissions"]["admins"]:
self.reply(data, "you must be a bot admin to use this command.")
self.reply(data, "You must be a bot admin to use this command.")
return return


if data.command == "join": if data.command == "join":
@@ -59,7 +59,7 @@ class ChanOps(Command):
if not channel.startswith("#"): if not channel.startswith("#"):
channel = "#" + channel channel = "#" + channel
else: else:
msg = "you must specify a channel to join or part from."
msg = "You must specify a channel to join or part from."
self.reply(data, msg) self.reply(data, msg)
return return




Loading…
Cancel
Save