Gets user information right

There was a problem with the ceiling function, I was passing an integer
(/100) instead of a float (/100.0)
master
J.Fernando Sánchez 11 years ago
parent 5b75a99d09
commit ffbc4b655b

@ -69,7 +69,7 @@ while True:
nextuser=None
minimumscore=1000
unknowns = [person for person in pending if person not in userobject]
for i in xrange(0,int(math.ceil(len(unknowns)/100))):
for i in xrange(0,int(math.ceil(len(unknowns)/100.0))):
piece = unknowns[i*100:(i+1)*100]
getinfo(piece)
for user in pending.copy():

Loading…
Cancel
Save