From 5d6440ce8cc173e6aa663e8b8c8e9c03026160b7 Mon Sep 17 00:00:00 2001 From: kiblik Date: Thu, 8 Feb 2024 22:17:28 +0000 Subject: [PATCH] Update dojo/utils.py Co-authored-by: Charles Neill <1749665+cneill@users.noreply.github.com> --- dojo/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dojo/utils.py b/dojo/utils.py index 6a3f6499213..1e6854ba7fc 100644 --- a/dojo/utils.py +++ b/dojo/utils.py @@ -2429,7 +2429,7 @@ def get_password_requirements_string(): if bool(get_system_setting('number_character_required')): s += ', one number (0-9)' if bool(get_system_setting('special_character_required')): - s += ', one special chacter (()[]{}|\\`~!@#$%^&*_-+=;:\'\",<>./?)' + s += ', one special character (()[]{}|\\`~!@#$%^&*_-+=;:\'\",<>./?)' if s.count(', ') == 1: password_requirements_string = s.rsplit(', ', 1)[0] + ' and ' + s.rsplit(', ', 1)[1]