diff --git a/app/classes/shared/helpers.py b/app/classes/shared/helpers.py index f6282ea2..f1f18fa1 100644 --- a/app/classes/shared/helpers.py +++ b/app/classes/shared/helpers.py @@ -370,7 +370,7 @@ class Helpers: digits = string.digits locase = string.ascii_lowercase upcase = string.ascii_uppercase - symbols = string.punctuation + symbols = "!@#$%^&*" # Reducing to avoid issues with ([]{}<>,'`) etc # Combine all the character strings above to form one string combo = digits + upcase + locase + symbols