Browse Source

Capitalise replies in !crypt: !hash, !encrypt, !decrypt

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

+ 5
- 5
earwigbot/commands/crypt.py View File

@@ -34,12 +34,12 @@ class Crypt(Command):


def process(self, data): def process(self, data):
if data.command == "crypt": if data.command == "crypt":
msg = "available commands are !hash, !encrypt, and !decrypt."
msg = "Available commands are !hash, !encrypt, and !decrypt."
self.reply(data, msg) self.reply(data, msg)
return return


if not data.args: if not data.args:
msg = "what do you want me to {0}?".format(data.command)
msg = "What do you want me to {0}?".format(data.command)
self.reply(data, msg) self.reply(data, msg)
return return


@@ -47,14 +47,14 @@ class Crypt(Command):
algo = data.args[0] algo = data.args[0]
if algo == "list": if algo == "list":
algos = ', '.join(hashlib.algorithms) algos = ', '.join(hashlib.algorithms)
msg = algos.join(("supported algorithms: ", "."))
msg = algos.join(("Supported algorithms: ", "."))
self.reply(data, msg) self.reply(data, msg)
elif algo in hashlib.algorithms: elif algo in hashlib.algorithms:
string = ' '.join(data.args[1:]) string = ' '.join(data.args[1:])
result = getattr(hashlib, algo)(string).hexdigest() result = getattr(hashlib, algo)(string).hexdigest()
self.reply(data, result) self.reply(data, result)
else: else:
msg = "unknown algorithm: '{0}'.".format(algo)
msg = "Unknown algorithm: '{0}'.".format(algo)
self.reply(data, msg) self.reply(data, msg)


else: else:
@@ -62,7 +62,7 @@ class Crypt(Command):
text = " ".join(data.args[1:]) text = " ".join(data.args[1:])


if not text: if not text:
msg = "a key was provided, but text to {0} was not."
msg = "A key was provided, but text to {0} was not."
self.reply(data, msg.format(data.command)) self.reply(data, msg.format(data.command))
return return




Loading…
Cancel
Save