Updated helpstrings
This commit is contained in:
parent
75a001ad5d
commit
54cf797b1e
60 changed files with 104 additions and 104 deletions
|
@ -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)
|
||||
|
|
Reference in a new issue