Commit 8dbe1397 authored by Francesco Poldi's avatar Francesco Poldi

Store users' info in the list

parent 257ef79d
......@@ -182,11 +182,10 @@ async def Users(u, config, conn):
if config.Store_object:
logme.debug(__name__+':User:Store_object')
if config.Followers or config.Following:
if hasattr(config.Store_object_follow_list, 'append'):
config.Store_object_follow_list.append(user)
else:
users_list.append(user) # twint.user.user
if hasattr(config.Store_object_follow_list, 'append'):
config.Store_object_follow_list.append(user)
else:
users_list.append(user) # twint.user.user
if config.Pandas:
logme.debug(__name__+':User:Pandas+user')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment