From 5c1195f42defb3bcba316b03e970ebdc0488e4d6 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Mon, 30 May 2022 15:40:10 -0400 Subject: [PATCH] Updated password length limit message to be in-line with new error message styling --- bin/sshyp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sshyp b/bin/sshyp index ed7d59e..97d1b74 100755 --- a/bin/sshyp +++ b/bin/sshyp @@ -117,7 +117,7 @@ def pass_gen(): _length = int(input('How many characters should be in the password? ')) if _length > 840: _length = 840 - print('\n\u001b[38;5;208mPassword length has been limited to the maximum of 840 characters.\u001b[0m\n') + print('\n\u001b[38;5;9mpassword length has been limited to the maximum of 840 characters\u001b[0m\n') _complexity = str(input('Should the password be simple (for compatibility) or complex (for security)? (s/C) ')) _gen = _pass_gen_function(_complexity, _length) return _gen