Skip to content

Commit 0d844e9

Browse files
authored
Update passGenerate.py
1 parent cd2ecfc commit 0d844e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

passGenerator/passGenerate.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def main():
5959
user = input("\nEnter length on pass you want:\ninput must between 8 to 180\n==> ")
6060
if (user.upper() == 'Q'):
6161
sys.exit(0)
62-
if int(user) < 6 or int(user) >180:
62+
if int(user) < 8 or int(user) >180:
6363
continue
6464
length = int(user)
6565
except (ValueError):
@@ -85,4 +85,4 @@ def main():
8585
else:
8686
print('We cant Generate a Good password please Enter again :)')
8787
main()
88-
main()
88+
main()

0 commit comments

Comments
 (0)