We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd2ecfc commit 0d844e9Copy full SHA for 0d844e9
passGenerator/passGenerate.py
@@ -59,7 +59,7 @@ def main():
59
user = input("\nEnter length on pass you want:\ninput must between 8 to 180\n==> ")
60
if (user.upper() == 'Q'):
61
sys.exit(0)
62
- if int(user) < 6 or int(user) >180:
+ if int(user) < 8 or int(user) >180:
63
continue
64
length = int(user)
65
except (ValueError):
@@ -85,4 +85,4 @@ def main():
85
else:
86
print('We cant Generate a Good password please Enter again :)')
87
main()
88
-main()
+main()
0 commit comments