mirror of
https://github.com/balkian/TwitterDigger.git
synced 2024-11-22 08:12:28 +00:00
Gets user information right
There was a problem with the ceiling function, I was passing an integer (/100) instead of a float (/100.0)
This commit is contained in:
parent
5b75a99d09
commit
ffbc4b655b
2
myego.py
2
myego.py
@ -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…
Reference in New Issue
Block a user