Made new utility plugin with hash, length and other text formatting commands

This commit is contained in:
Luke Rogers 2013-10-01 03:26:40 +13:00
parent a16b1776f8
commit 52b14b367a
4 changed files with 42 additions and 22 deletions

View file

@ -35,9 +35,3 @@ def decypher(inp):
passwd = inp.split(" ")[0]
inp = " ".join(inp.split(" ")[1:])
return decode(passwd,inp)
@hook.command
def rot13(inp):
"""rot13 <string> -- Encode <string> with rot13."""
return inp.encode('rot13')