This commit is contained in:
Luke Rogers 2012-06-11 10:24:30 +12:00
parent a47d99c0c2
commit f2ec2eb8d3

View file

@ -38,7 +38,7 @@ def gen_password(types):
needs_def = 1
#defaults to lowercase alpha password if no arguments are found
if needs_def == 1:
okay = okay + [str(x) for x in xrange(0, 10)]
okay = okay + string.ascii_lowercase
password = ""
#generates password
for x in range(length):