Commit a5df26d9 authored by Francesco Poldi's avatar Francesco Poldi

V2.1.19 - Fix duplicated users #711

parent c673b5d2
VERSION = (2, 1, 18) VERSION = (2, 1, 19)
__version__ = '.'.join(map(str, VERSION)) __version__ = '.'.join(map(str, VERSION))
...@@ -188,12 +188,6 @@ async def Users(u, config, conn): ...@@ -188,12 +188,6 @@ async def Users(u, config, conn):
else: else:
users_list.append(user) # twint.user.user users_list.append(user) # twint.user.user
# also populate using the previous method to avoid breaking changes
if hasattr(config.Store_object_users_list, 'append'):
config.Store_object_users_list.append(user)
else:
users_list.append(user) # twint.user.user
if config.Pandas: if config.Pandas:
logme.debug(__name__+':User:Pandas+user') logme.debug(__name__+':User:Pandas+user')
panda.update(user, config) panda.update(user, config)
......
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