mirror of
https://github.com/balkian/bitter.git
synced 2025-08-29 14:52:21 +00:00
Fix bug user ids
This commit is contained in:
@@ -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))
|
||||
|
Reference in New Issue
Block a user