Updated helpstrings

This commit is contained in:
neersighted 2012-05-15 20:07:27 -07:00
parent 75a001ad5d
commit 54cf797b1e
60 changed files with 104 additions and 104 deletions

View file

@ -11,7 +11,7 @@ len_chars = len(chars)
@hook.command
def cypher(inp):
".cypher <pass> <string> -- Cyphers <string> with <password>."
"cypher <pass> <string> -- Cyphers <string> with <password>."
passwd = inp.split(" ")[0]
len_passwd = len(passwd)
@ -38,7 +38,7 @@ def cypher(inp):
@hook.command
def decypher(inp):
".decypher <pass> <string> -- Decyphers <string> with <password>."
"decypher <pass> <string> -- Decyphers <string> with <password>."
passwd = inp.split(" ")[0]
len_passwd = len(passwd)