mirror of
https://github.com/balkian/bitter.git
synced 2024-12-22 00:18:12 +00:00
Fix bug user ids
This commit is contained in:
parent
311b972b27
commit
e6b08c4ffb
@ -1 +1 @@
|
||||
0.9.1
|
||||
0.9.2
|
||||
|
@ -514,7 +514,8 @@ def user_download_batch(wq, batch):
|
||||
user_ids = []
|
||||
for elem in batch:
|
||||
try:
|
||||
user_ids.append(int(elem))
|
||||
int(elem)
|
||||
user_ids.append(str(elem))
|
||||
except ValueError:
|
||||
screen_names.append(elem.lower())
|
||||
print('Downloading: {} - {}'.format(user_ids, screen_names))
|
||||
|
Loading…
Reference in New Issue
Block a user