Przeglądaj źródła

update apphub's password rule

zhaojing1987 1 rok temu
rodzic
commit
b7aa7ffae6
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      apphub/src/utils/password_generator.py

+ 1 - 1
apphub/src/utils/password_generator.py

@@ -10,7 +10,7 @@ class PasswordGenerator:
         lowercase_letters = string.ascii_lowercase      # all lowercase letters
         lowercase_letters = string.ascii_lowercase      # all lowercase letters
         uppercase_letters = string.ascii_uppercase      # all uppercase letters
         uppercase_letters = string.ascii_uppercase      # all uppercase letters
         digits = string.digits                          # all digits
         digits = string.digits                          # all digits
-        special_symbols = "[]*+?~/|"                    # all special symbols
+        special_symbols = "[]*+?~"                      # all special symbols
 
 
         # get 4 random characters from each category
         # get 4 random characters from each category
         password = [
         password = [