diff --git a/plugins/password.py b/plugins/password.py index c550ab6..f1fcb08 100755 --- a/plugins/password.py +++ b/plugins/password.py @@ -53,6 +53,6 @@ def gen_password(types): @hook.command def password(inp, notice=None): - ".password [types] -- Generates a password of (default 10). [types] can include 'alpha', 'no caps', 'numeric', 'symbols' or any combination of the types, eg. 'numbers symbols'" + ".password [types] -- Generates a password of (default 10). [types] can include 'alpha', 'no caps', 'numeric', 'symbols' or any combination of the types, eg. 'numbers symbols'" password = gen_password(inp) notice(password)