From bdfc89370ea45484063710ea14b71ba025934752 Mon Sep 17 00:00:00 2001 From: Alireza Razavi Date: Thu, 6 Oct 2022 02:51:23 -0700 Subject: [PATCH] Bug fixed --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 6243af4..b5b6ff9 100644 --- a/main.py +++ b/main.py @@ -35,10 +35,10 @@ def entryPoint(): endRange = int(passwordLength.split("-")[1]) # The constant characters for all password lists - constChars = [] + constChars = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '@', '+', '-', '?', '.', '_'] # Split the passed string character by character - chars = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '@', '+', '-', '?', '.', '_'] + chars = [] for ch in characters: # Check for lower case characters if ch.isupper():