Reduce number of symbols to avoid issues

Limit the symbols used in the character string to avoid potential
problems with certain characters.
This commit is contained in:
Zedifus 2023-12-07 15:32:18 +00:00
parent 130dc3db02
commit 1e68abac70

View File

@ -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