diff --git a/bitter/VERSION b/bitter/VERSION index f374f66..2003b63 100644 --- a/bitter/VERSION +++ b/bitter/VERSION @@ -1 +1 @@ -0.9.1 +0.9.2 diff --git a/bitter/utils.py b/bitter/utils.py index a4123b1..098296f 100644 --- a/bitter/utils.py +++ b/bitter/utils.py @@ -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))