derp
This commit is contained in:
parent
a47d99c0c2
commit
f2ec2eb8d3
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ def gen_password(types):
|
||||||
needs_def = 1
|
needs_def = 1
|
||||||
#defaults to lowercase alpha password if no arguments are found
|
#defaults to lowercase alpha password if no arguments are found
|
||||||
if needs_def == 1:
|
if needs_def == 1:
|
||||||
okay = okay + [str(x) for x in xrange(0, 10)]
|
okay = okay + string.ascii_lowercase
|
||||||
password = ""
|
password = ""
|
||||||
#generates password
|
#generates password
|
||||||
for x in range(length):
|
for x in range(length):
|
||||||
|
|
Reference in a new issue